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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 6 private Throwable cause; field in class:DecoderException
8 DecoderException(String msg, Throwable cause)
12 this.cause = cause;
17 return cause;
EncoderException.java 6 private Throwable cause; field in class:EncoderException
8 EncoderException(String msg, Throwable cause)
12 this.cause = cause;
17 return cause;
  /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/mockito/cglib-and-asm/src/org/mockito/cglib/core/
CodeGenerationException.java 22 private Throwable cause; field in class:CodeGenerationException
24 public CodeGenerationException(Throwable cause) {
25 super(cause.getClass().getName() + "-->" + cause.getMessage());
26 this.cause = cause;
30 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/chromium_org/sync/engine/
sync_cycle_event.cc 9 SyncCycleEvent::SyncCycleEvent(EventCause cause) : what_happened(cause) {
  /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/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 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 public ASN1ParsingException(String message, Throwable cause)
16 this.cause = cause;
21 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/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/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/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/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/javassist/src/main/javassist/bytecode/annotation/
NoSuchClassError.java 28 public NoSuchClassError(String className, Error cause) {
29 super(cause.toString(), cause); local
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverIOException.java 27 public JSilverIOException(IOException cause) {
28 super(cause.getMessage());
29 initCause(cause);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BulkBeanException.java 23 private Throwable cause; field in class:BulkBeanException
30 public BulkBeanException(Throwable cause, int index) {
31 super(cause.getMessage());
33 this.cause = cause;
41 return cause;
  /external/objenesis/main/src/org/objenesis/
ObjenesisException.java 40 * @param cause Wrapped exception. The message will be the one of the cause.
42 public ObjenesisException(Throwable cause) {
43 super(cause == null ? null : cause.toString());
45 initCause(cause);
51 * @param cause Wrapped exception
53 public ObjenesisException(String msg, Throwable cause) {
56 initCause(cause);
  /external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
DeserializationException.java 20 * Constructs a new deserialization exception with the specified cause.
22 public DeserializationException(Exception cause) {
23 super(cause);

Completed in 1763 milliseconds

1 2 3 4 5 6 7 8 91011>>