Home
last modified time | relevance | path

Searched refs:rootCause (Results 1 – 9 of 9) sorted by relevance

/external/jackson-core/src/main/java/com/fasterxml/jackson/core/
DJsonGenerationException.java22 public JsonGenerationException(Throwable rootCause) { in JsonGenerationException() argument
23 super(rootCause); in JsonGenerationException()
32 public JsonGenerationException(String msg, Throwable rootCause) { in JsonGenerationException() argument
33 super(msg, null, rootCause); in JsonGenerationException()
39 public JsonGenerationException(Throwable rootCause, JsonGenerator g) { in JsonGenerationException() argument
40 super(rootCause); in JsonGenerationException()
55 public JsonGenerationException(String msg, Throwable rootCause, JsonGenerator g) { in JsonGenerationException() argument
56 super(msg, null, rootCause); in JsonGenerationException()
DJsonProcessingException.java21 protected JsonProcessingException(String msg, JsonLocation loc, Throwable rootCause) { in JsonProcessingException() argument
23 if (rootCause != null) { in JsonProcessingException()
24 initCause(rootCause); in JsonProcessingException()
37 protected JsonProcessingException(String msg, Throwable rootCause) { in JsonProcessingException() argument
38 this(msg, null, rootCause); in JsonProcessingException()
41 protected JsonProcessingException(Throwable rootCause) { in JsonProcessingException() argument
42 this(null, null, rootCause); in JsonProcessingException()
/external/apache-commons-math/src/main/java/org/apache/commons/math/
DMathException.java96 public MathException(Throwable rootCause) { in MathException() argument
97 super(rootCause); in MathException()
99 this.arguments = new Object[] { (rootCause == null) ? "" : rootCause.getMessage() }; in MathException()
114 public MathException(Throwable rootCause, String pattern, Object ... arguments) { in MathException() argument
115 this(rootCause, new DummyLocalizable(pattern), arguments); in MathException()
128 public MathException(Throwable rootCause, Localizable pattern, Object ... arguments) { in MathException() argument
129 super(rootCause); in MathException()
DMathRuntimeException.java88 public MathRuntimeException(final Throwable rootCause) { in MathRuntimeException() argument
89 super(rootCause); in MathRuntimeException()
91 this.arguments = new Object[] { (rootCause == null) ? "" : rootCause.getMessage() }; in MathRuntimeException()
105 public MathRuntimeException(final Throwable rootCause, in MathRuntimeException() argument
107 this(rootCause, new DummyLocalizable(pattern), arguments); in MathRuntimeException()
120 public MathRuntimeException(final Throwable rootCause, in MathRuntimeException() argument
122 super(rootCause); in MathRuntimeException()
364 public static IOException createIOException(final Throwable rootCause) {
365 IOException ioe = new IOException(rootCause.getLocalizedMessage());
366 ioe.initCause(rootCause);
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt269 private fun addSuppressedExceptions(rootCause: Throwable, exceptions: List<Throwable>) { in <lambda>()
277 val unwrappedCause = unwrap(rootCause) in <lambda>()
280 if (unwrapped !== rootCause && unwrapped !== unwrappedCause && in <lambda>()
282 rootCause.addSuppressedThrowable(unwrapped) in <lambda>()
416 … is Finishing -> state.rootCause?.toCancellationException("$classSimpleName is cancelling") in <lambda>()
434 is Finishing -> state.rootCause in <lambda>()
472 var rootCause: Throwable? = null in <lambda>() variable
477 rootCause = state.rootCause // != null if cancelling job in <lambda>()
480 … if (rootCause == null || handler.isHandlerOf<ChildHandleNode>() && !state.isCompleting) { in <lambda>()
485 if (rootCause == null) return node in <lambda>()
[all …]
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/exc/
DStreamReadException.java42 protected StreamReadException(String msg, JsonLocation loc, Throwable rootCause) { in StreamReadException() argument
44 if (rootCause != null) { in StreamReadException()
45 initCause(rootCause); in StreamReadException()
/external/testng/src/main/java/org/testng/internal/
DInvokeMethodRunnable.java79 public TestNGRuntimeException(Throwable rootCause) { in TestNGRuntimeException() argument
80 super(rootCause); in TestNGRuntimeException()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DJsonMappingException.java220 public JsonMappingException(String msg, Throwable rootCause) { super(msg, rootCause); } in JsonMappingException() argument
232 …MappingException(String msg, JsonLocation loc, Throwable rootCause) { super(msg, loc, rootCause); } in JsonMappingException() argument
/external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
DNettyClientTransportTest.java482 Throwable rootCause = getRootCause(e); in maxHeaderListSizeShouldBeEnforcedOnClient()
483 Status status = ((StatusException) rootCause).getStatus(); in maxHeaderListSizeShouldBeEnforcedOnClient()