Searched refs:cause (Results 1 - 25 of 364) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
H A DDecoderException.java6 private Throwable cause; field in class:DecoderException
8 DecoderException(String msg, Throwable cause) argument
12 this.cause = cause;
17 return cause;
H A DEncoderException.java6 private Throwable cause; field in class:EncoderException
8 EncoderException(String msg, Throwable cause) argument
12 this.cause = cause;
17 return cause;
/external/apache-http/src/org/apache/commons/logging/
H A DLogConfigurationException.java60 * Construct a new exception with the specified cause and a derived
63 * @param cause The underlying cause
65 public LogConfigurationException(Throwable cause) { argument
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
78 LogConfigurationException(String message, Throwable cause) argument
89 protected Throwable cause = null; field in class:LogConfigurationException
[all...]
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DCodeGenerationException.java22 private Throwable cause; field in class:CodeGenerationException
24 public CodeGenerationException(Throwable cause) { argument
25 super(cause.getClass().getName() + "-->" + cause.getMessage());
26 this.cause = cause;
30 return cause;
/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/sync/engine/
H A Dsync_cycle_event.cc9 SyncCycleEvent::SyncCycleEvent(EventCause cause) : what_happened(cause) { argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DCertException.java9 private Throwable cause; field in class:CertException
11 public CertException(String msg, Throwable cause) argument
15 this.cause = cause;
25 return cause;
H A DCertIOException.java11 private Throwable cause; field in class:CertIOException
13 public CertIOException(String msg, Throwable cause) argument
17 this.cause = cause;
27 return cause;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DOperatorException.java6 private Throwable cause; field in class:OperatorException
8 public OperatorException(String msg, Throwable cause) argument
12 this.cause = cause;
22 return cause;
H A DOperatorStreamException.java8 private Throwable cause; field in class:OperatorStreamException
10 public OperatorStreamException(String msg, Throwable cause) argument
14 this.cause = cause;
19 return cause;
H A DRuntimeOperatorException.java6 private Throwable cause; field in class:RuntimeOperatorException
13 public RuntimeOperatorException(String msg, Throwable cause) argument
17 this.cause = cause;
22 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Exception.java8 private Throwable cause; field in class:ASN1Exception
15 ASN1Exception(String message, Throwable cause) argument
18 this.cause = cause;
23 return cause;
H A DASN1ParsingException.java6 private Throwable cause; field in class:ASN1ParsingException
13 public ASN1ParsingException(String message, Throwable cause) argument
16 this.cause = cause;
21 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DCryptoException.java9 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;
35 CryptoException( String message, Throwable cause) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/
H A DExtendedInvalidKeySpecException.java8 private Throwable cause; field in class:ExtendedInvalidKeySpecException
10 public ExtendedInvalidKeySpecException(String msg, Throwable cause) argument
14 this.cause = cause;
19 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DExtCRLException.java8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DExtCRLException.java8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemGenerationException.java8 private Throwable cause; field in class:PemGenerationException
10 public PemGenerationException(String message, Throwable cause) argument
13 this.cause = cause;
23 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtCertificateEncodingException.java8 Throwable cause; field in class:ExtCertificateEncodingException
10 ExtCertificateEncodingException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/javassist/src/main/javassist/bytecode/annotation/
H A DNoSuchClassError.java28 public NoSuchClassError(String className, Error cause) { argument
29 super(cause.toString(), cause);
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverIOException.java27 public JSilverIOException(IOException cause) { argument
28 super(cause.getMessage());
29 initCause(cause);
/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/objenesis/main/src/org/objenesis/
H A DObjenesisException.java40 * @param cause Wrapped exception. The message will be the one of the cause.
42 public ObjenesisException(Throwable cause) { argument
43 super(cause == null ? null : cause.toString());
45 initCause(cause);
51 * @param cause Wrapped exception
53 public ObjenesisException(String msg, Throwable cause) { argument
56 initCause(cause);
/external/chromium_org/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
H A DDeserializationException.java20 * Constructs a new deserialization exception with the specified cause.
22 public DeserializationException(Exception cause) { argument
23 super(cause);

Completed in 373 milliseconds

1234567891011>>