HomeSort by relevance Sort by last modified time
    Searched defs:cause (Results 1 - 25 of 174) sorted by null

1 2 3 4 5 6 7

  /external/javassist/src/main/javassist/bytecode/annotation/
NoSuchClassError.java 28 public NoSuchClassError(String className, Error cause) {
29 super(cause.toString(), cause); local
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
InstallException.java 25 public InstallException(Throwable cause) {
26 super(cause.getMessage(), cause); local
29 public InstallException(String message, Throwable cause) {
30 super(message, cause);
39 Throwable cause = getCause(); local
40 return cause instanceof SyncException && ((SyncException)cause).wasCanceled();
  /external/chromium/chrome/browser/net/
chrome_cookie_notification_details.h 15 net::CookieMonster::Delegate::ChangeCause cause)
18 cause(cause) {
23 net::CookieMonster::Delegate::ChangeCause cause; member in struct:ChromeCookieDetails
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1Exception.java 8 private Throwable cause; field in class:ASN1Exception
15 ASN1Exception(String message, Throwable cause)
18 this.cause = cause;
23 return cause;
ASN1ParsingException.java 6 private Throwable cause; field in class:ASN1ParsingException
13 ASN1ParsingException(String message, Throwable cause)
16 this.cause = cause;
21 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
ExtCRLException.java 8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause)
13 this.cause = cause;
18 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
EncryptionException.java 8 private Throwable cause; field in class:EncryptionException
18 this.cause = ex;
23 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
ExtCertificateEncodingException.java 8 Throwable cause; field in class:ExtCertificateEncodingException
10 ExtCertificateEncodingException(String message, Throwable cause)
13 this.cause = cause;
18 return cause;
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 55 * Construct a new exception with the specified cause and a derived
58 * @param cause The underlying cause
60 public LogConfigurationException(Throwable cause) {
62 this((cause == null) ? null : cause.toString(), cause);
68 * Construct a new exception with the specified detail message and cause.
71 * @param cause The underlying cause
84 protected Throwable cause = null; field in class:LogConfigurationException
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathBuilderException.java 10 private Throwable cause; field in class:ExtCertPathBuilderException
12 public ExtCertPathBuilderException(String message, Throwable cause)
15 this.cause = cause;
18 public ExtCertPathBuilderException(String msg, Throwable cause,
21 super(msg, cause);
22 this.cause = cause;
27 return cause;
ExtCertPathValidatorException.java 11 private Throwable cause; field in class:ExtCertPathValidatorException
13 public ExtCertPathValidatorException(String message, Throwable cause)
16 this.cause = cause;
19 public ExtCertPathValidatorException(String msg, Throwable cause,
22 super(msg, cause, certPath, index);
23 this.cause = cause;
28 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/util/io/pem/
PemGenerationException.java 8 private Throwable cause; field in class:PemGenerationException
10 public PemGenerationException(String message, Throwable cause)
13 this.cause = cause;
23 return cause;
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverIOException.java 27 public JSilverIOException(IOException cause) {
28 super(cause.getMessage());
29 initCause(cause);
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathException.java 33 private final Throwable cause; field in class:XPathException
43 * <p>The <code>cause</code> is not initialized.</p>
54 this.cause = null;
58 * <p>Constructs a new <code>XPathException</code> with the specified <code>cause</code>.</p>
60 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
62 * @param cause The cause.
64 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
66 public XPathException(Throwable cause) {
67 super(cause == null ? null : cause.toString())
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/build/
ApkCreationException.java 29 public ApkCreationException(Throwable cause, String format, Object... args) {
30 super(String.format(format, args), cause); local
33 public ApkCreationException(Throwable cause) {
34 super(cause);
SealedApkException.java 29 public SealedApkException(Throwable cause, String format, Object... args) {
30 super(String.format(format, args), cause); local
33 public SealedApkException(Throwable cause) {
34 super(cause);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
IOExceptionTest.java 83 Throwable cause = new Throwable("A dummy Throwable"); //$NON-NLS-1$ local
84 IOException ioException = new IOException(cause);
85 assertEquals(cause.toString(), ioException.getMessage());
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/javax/security/sasl/serialization/
AuthenticationExceptionTest.java 42 Exception cause = new Exception(msgs[1]); local
48 new AuthenticationException(msg, cause),
49 new AuthenticationException(msgs[1], cause)
SaslExceptionTest.java 42 Exception cause = new Exception(msgs[1]); local
48 new SaslException(msg, cause),
49 new SaslException(msgs[1], cause)
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CRLExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CRLException dExc = new CRLException(msgs[0], cause);
CertPathBuilderExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CertPathBuilderException dExc = new CertPathBuilderException(msgs[0], cause);
CertStoreExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CertStoreException dExc = new CertStoreException(msgs[0], cause);
CertificateEncodingExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CertificateEncodingException dExc = new CertificateEncodingException(msgs[0], cause);
CertificateExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CertificateException dExc = new CertificateException(msgs[0], cause);
CertificateParsingExceptionTest.java 41 Exception cause = new Exception(msgs[1]); local
42 CertificateParsingException dExc = new CertificateParsingException(msgs[0], cause);

Completed in 258 milliseconds

1 2 3 4 5 6 7