Searched refs:cause (Results 1 - 25 of 286) 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.java55 * Construct a new exception with the specified cause and a derived
58 * @param cause The underlying cause
60 public LogConfigurationException(Throwable cause) { argument
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
73 LogConfigurationException(String message, Throwable cause) argument
84 protected Throwable cause = null; field in class:LogConfigurationException
[all...]
/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/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/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/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/chrome/browser/sync/engine/
H A Dsyncer_types.cc9 SyncEngineEvent::SyncEngineEvent(EventCause cause) : what_happened(cause), argument
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DDexException.java28 public DexException(Throwable cause) { argument
29 super(cause);
/external/guava/guava/src/com/google/common/collect/
H A DAsynchronousComputationException.java31 * Creates a new instance with the given cause.
33 public AsynchronousComputationException(Throwable cause) { argument
34 super(cause);
/external/ant-glob/src/org/apache/tools/ant/
H A DBuildException.java46 * a root cause.
49 * Should not be <code>null</code> unless a cause is specified.
50 * @param cause The exception that might have caused this one.
53 public BuildException(String message, Throwable cause) { argument
55 initCause(cause);
59 * Constructs an exception with the given exception as a root cause.
61 * @param cause The exception that might have caused this one.
64 public BuildException(Throwable cause) { argument
65 super(cause);
/external/apache-http/src/org/apache/http/client/
H A DClientProtocolException.java50 public ClientProtocolException(Throwable cause) { argument
51 initCause(cause);
54 public ClientProtocolException(String message, Throwable cause) { argument
56 initCause(cause);

Completed in 9019 milliseconds

1234567891011>>