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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
CertException.java 9 private Throwable cause; field in class:CertException
11 public CertException(String msg, Throwable cause)
15 this.cause = cause;
25 return cause;
CertIOException.java 11 private Throwable cause; field in class:CertIOException
13 public CertIOException(String msg, Throwable cause)
17 this.cause = cause;
27 return cause;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
OCSPException.java 6 private Throwable cause; field in class:OCSPException
16 Throwable cause)
20 this.cause = cause;
25 return cause;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cmc/
CMCException.java 6 private final Throwable cause; field in class:CMCException
13 public CMCException(String msg, Throwable cause)
16 this.cause = cause;
21 return cause;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
OperatorException.java 6 private Throwable cause; field in class:OperatorException
8 public OperatorException(String msg, Throwable cause)
12 this.cause = cause;
22 return cause;
OperatorStreamException.java 8 private Throwable cause; field in class:OperatorStreamException
10 public OperatorStreamException(String msg, Throwable cause)
14 this.cause = cause;
19 return cause;
RuntimeOperatorException.java 6 private Throwable cause; field in class:RuntimeOperatorException
13 public RuntimeOperatorException(String msg, Throwable cause)
17 this.cause = cause;
22 return cause;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1Exception.java 11 private Throwable cause; field in class:ASN1Exception
27 * @param cause the exception that caused this exception to be thrown.
29 ASN1Exception(String message, Throwable cause)
32 this.cause = cause;
36 * Return the underlying cause of this exception, if any.
42 return cause;
ASN1ParsingException.java 9 private Throwable cause; field in class:ASN1ParsingException
25 * @param cause the exception that caused this exception to be thrown.
27 public ASN1ParsingException(String message, Throwable cause)
30 this.cause = cause;
34 * Return the underlying cause of this exception, if any.
40 return cause;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
CryptoException.java 9 private Throwable cause; field in class:CryptoException
30 * Create a CryptoException with the given message and underlying cause.
33 * @param cause the throwable that was the underlying cause.
37 Throwable cause)
41 this.cause = cause;
46 return cause;
  /external/bouncycastle/bcprov/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/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 9 private Throwable cause; field in class:DecoderException
11 DecoderException(String msg, Throwable cause)
15 this.cause = cause;
20 return cause;
EncoderException.java 9 private Throwable cause; field in class:EncoderException
11 EncoderException(String msg, Throwable cause)
15 this.cause = cause;
20 return cause;
  /external/bouncycastle/bcprov/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/objenesis/main/src/test/java/org/objenesis/
ObjenesisExceptionTest.java 35 Exception cause = new RuntimeException("test"); local
36 Exception e = new ObjenesisException(cause);
37 assertSame(cause, e.getCause());
38 assertEquals(cause.toString(), e.getMessage());
48 Exception cause = new RuntimeException("test"); local
49 Exception e = new ObjenesisException("msg", cause);
50 assertSame(cause, e.getCause());
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 60 * Construct a new exception with the specified cause and a derived
63 * @param cause The underlying cause
65 public LogConfigurationException(Throwable cause) {
67 this((cause == null) ? null : cause.toString(), cause);
73 * Construct a new exception with the specified detail message and cause.
76 * @param cause The underlying cause
89 protected Throwable cause = null; field in class:LogConfigurationException
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
ExtendedInvalidKeySpecException.java 8 private Throwable cause; field in class:ExtendedInvalidKeySpecException
10 public ExtendedInvalidKeySpecException(String msg, Throwable cause)
14 this.cause = cause;
19 return cause;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
ExtCRLException.java 8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause)
13 this.cause = cause;
18 return cause;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
BadBlockException.java 8 private final Throwable cause; field in class:BadBlockException
10 public BadBlockException(String msg, Throwable cause)
14 this.cause = cause;
19 return cause;
  /external/bouncycastle/bcprov/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/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemGenerationException.java 11 private Throwable cause; field in class:PemGenerationException
13 public PemGenerationException(String message, Throwable cause)
16 this.cause = cause;
26 return cause;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/
ASN1Exception.java 13 private Throwable cause; field in class:ASN1Exception
29 * @param cause the exception that caused this exception to be thrown.
31 ASN1Exception(String message, Throwable cause)
34 this.cause = cause;
38 * Return the underlying cause of this exception, if any.
44 return cause;
ASN1ParsingException.java 11 private Throwable cause; field in class:ASN1ParsingException
27 * @param cause the exception that caused this exception to be thrown.
29 public ASN1ParsingException(String message, Throwable cause)
32 this.cause = cause;
36 * Return the underlying cause of this exception, if any.
42 return cause;
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
CryptoException.java 11 private Throwable cause; field in class:CryptoException
32 * Create a CryptoException with the given message and underlying cause.
35 * @param cause the throwable that was the underlying cause.
39 Throwable cause)
43 this.cause = cause;
48 return cause;

Completed in 1178 milliseconds

1 2 3 4 5 6 7 8 91011>>