Searched defs:cause (Results 76 - 100 of 241) sorted by relevance

12345678910

/external/guava/guava/src/com/google/common/util/concurrent/
H A DUncheckedTimeoutException.java32 public UncheckedTimeoutException(Throwable cause) { argument
33 super(cause);
36 public UncheckedTimeoutException(String message, Throwable cause) { argument
37 super(message, cause);
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
H A DJSilverCompilationException.java25 public JSilverCompilationException(String message, Throwable cause) { argument
26 super(message, cause);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverException.java28 protected JSilverException(String message, Throwable cause) { argument
29 super(message, cause);
H A DJSilverAutoEscapingException.java55 public JSilverAutoEscapingException(String message, Throwable cause) { argument
56 super(message, cause);
H A DJSilverBadSyntaxException.java45 * @param cause an original exception of an error. Null value is permitted and indicates that the
46 * cause is nonexistent or unknown.
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
48 JSilverBadSyntaxException(String message, String lineContent, String resourceName, int line, int column, Throwable cause) argument
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBulkBeanException.java23 private Throwable cause; field in class:BulkBeanException
30 public BulkBeanException(Throwable cause, int index) { argument
31 super(cause.getMessage());
33 this.cause = cause;
41 return cause;
/external/mockito/src/org/mockito/exceptions/misusing/
H A DMockitoConfigurationException.java17 public MockitoConfigurationException(String message, Exception cause) { argument
18 super(message, cause);
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocketException.java11 public WebSocketException(Exception cause) { argument
12 this(CloseCode.InternalServerError, cause.toString(), cause);
19 public WebSocketException(CloseCode code, String reason, Exception cause) { argument
20 super(code + ": " + reason, cause);
/external/smack/src/org/jivesoftware/smack/proxy/
H A DProxyException.java30 public ProxyException(ProxyInfo.ProxyType type, String ex, Throwable cause) argument
32 super("Proxy Exception " + type.toString() + " : "+ex+", "+cause);
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DAnalysisException.java39 public AnalysisException(Throwable cause) { argument
40 super(cause);
43 public AnalysisException(Throwable cause, String message, Object... formatArgs) { argument
44 super(cause, message, formatArgs);
H A DUnresolvedClassException.java37 public UnresolvedClassException(Throwable cause) { argument
38 super(cause);
41 public UnresolvedClassException(Throwable cause, String message, Object... formatArgs) { argument
42 super(cause, message, formatArgs);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathBuilderException.java10 private Throwable cause; field in class:ExtCertPathBuilderException
12 public ExtCertPathBuilderException(String message, Throwable cause) argument
15 this.cause = cause;
18 public ExtCertPathBuilderException(String msg, Throwable cause, argument
21 super(msg, cause);
22 this.cause = cause;
27 return cause;
H A DExtCertPathValidatorException.java11 private Throwable cause; field in class:ExtCertPathValidatorException
13 public ExtCertPathValidatorException(String message, Throwable cause) argument
16 this.cause = cause;
19 public ExtCertPathValidatorException(String msg, Throwable cause, argument
22 super(msg, cause, certPath, index);
23 this.cause = cause;
28 return cause;
/external/chromium_org/chrome/test/chromedriver/chrome/
H A Dstatus.cc77 Status::Status(StatusCode code, const Status& cause) argument
80 cause.message()) {}
84 const Status& cause)
87 "\nfrom " + cause.message()) {
82 Status(StatusCode code, const std::string& details, const Status& cause) argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DExceptionWithContext.java65 * @param cause {@code null-ok;} exception that caused this one
67 public ExceptionWithContext(Throwable cause) { argument
68 this(null, cause);
75 * @param cause {@code null-ok;} exception that caused this one
77 public ExceptionWithContext(String message, Throwable cause) { argument
79 (cause != null) ? cause.getMessage() : null,
80 cause);
82 if (cause instanceof ExceptionWithContext) {
83 String ctx = ((ExceptionWithContext) cause)
[all...]
/external/javassist/src/main/javassist/
H A DCannotCompileException.java27 * Gets the cause of this throwable.
35 * Initializes the cause of this throwable.
38 public synchronized Throwable initCause(Throwable cause) { argument
39 myCause = cause;
68 * representing the cause.
70 * @param e the cause.
80 * and an <code>Exception</code> representing the cause.
83 * @param e the cause.
/external/junit/src/org/junit/internal/
H A DArrayComparisonFailure.java23 * @param cause the exception that caused the array's content to fail the assertion test
27 public ArrayComparisonFailure(String message, AssertionError cause, int index) { argument
29 fCause= cause;
/external/junit/src/org/junit/internal/runners/
H A DErrorReportingRunner.java18 public ErrorReportingRunner(Class<?> testClass, Throwable cause) { argument
20 fCauses= getCauses(cause);
38 private List<Throwable> getCauses(Throwable cause) { argument
39 if (cause instanceof InvocationTargetException)
40 return getCauses(cause.getCause());
41 if (cause instanceof InitializationError)
42 return ((InitializationError) cause).getCauses();
43 if (cause instanceof org.junit.internal.runners.InitializationError)
44 return ((org.junit.internal.runners.InitializationError) cause)
46 return Arrays.asList(cause);
[all...]
/external/mockito/src/org/mockito/exceptions/base/
H A DMockitoSerializationIssue.java27 public MockitoSerializationIssue(String message, Exception cause) { argument
29 initCause(cause);
/external/nist-sip/java/javax/sip/header/
H A DReasonHeader.java10 void setCause(int cause) throws InvalidArgumentException; argument
/external/smack/src/org/apache/harmony/javax/security/sasl/
H A DSaslException.java27 * Serialized field for storing initial cause
53 public Throwable initCause(Throwable cause) { argument
54 super.initCause(cause);
55 _exception = cause;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/
H A DDexFileFactory.java121 public NoClassesDexException(Throwable cause) { argument
122 super(cause);
125 public NoClassesDexException(Throwable cause, String message, Object... formatArgs) { argument
126 super(cause, message, formatArgs);
/external/chromium_org/sync/sessions/
H A Dsync_session.cc82 void SyncSession::SendEventNotification(SyncCycleEvent::EventCause cause) { argument
83 SyncCycleEvent event(cause);
/external/guava/guava/src/com/google/common/cache/
H A DRemovalNotification.java43 private final RemovalCause cause; field in class:RemovalNotification
45 RemovalNotification(@Nullable K key, @Nullable V value, RemovalCause cause) { argument
48 this.cause = checkNotNull(cause);
52 * Returns the cause for which the entry was removed.
55 return cause;
59 * Returns {@code true} if there was an automatic removal due to eviction (the cause is neither
63 return cause.wasEvicted();
/external/libcxxabi/src/
H A Dcxa_default_handlers.cpp22 static const char* cause = "uncaught"; variable
64 cause, name, e->what());
69 cause, name);
73 abort_message("terminating with %s foreign exception", cause);
83 cause = "unexpected";

Completed in 561 milliseconds

12345678910