HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 1 - 25 of 667) 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 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/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;
  /frameworks/base/core/java/android/accounts/
AccountsException.java 26 public AccountsException(String message, Throwable cause) {
27 super(message, cause);
29 public AccountsException(Throwable cause) {
30 super(cause);
AuthenticatorException.java 26 public AuthenticatorException(String message, Throwable cause) {
27 super(message, cause);
29 public AuthenticatorException(Throwable cause) {
30 super(cause);
NetworkErrorException.java 25 public NetworkErrorException(String message, Throwable cause) {
26 super(message, cause);
28 public NetworkErrorException(Throwable cause) {
29 super(cause);
OperationCanceledException.java 25 public OperationCanceledException(String message, Throwable cause) {
26 super(message, cause);
28 public OperationCanceledException(Throwable cause) {
29 super(cause);
  /frameworks/base/core/java/android/util/
AndroidException.java 30 public AndroidException(String name, Throwable cause) {
31 super(name, cause);
34 public AndroidException(Exception cause) {
35 super(cause);
AndroidRuntimeException.java 30 public AndroidRuntimeException(String name, Throwable cause) {
31 super(name, cause);
34 public AndroidRuntimeException(Exception cause) {
35 super(cause);
  /libcore/luni/src/main/java/java/io/
IOError.java 29 * Constructs a new instance with its cause filled in.
31 * @param cause
32 * The detail cause for the error.
34 public IOError(Throwable cause) {
35 super(cause);
IOException.java 48 * Constructs a new instance of this class with detail message and cause
53 * @param cause
54 * The detail cause for the exception.
57 public IOException(String message, Throwable cause) {
58 super(message, cause);
62 * Constructs a new instance of this class with its detail cause filled in.
64 * @param cause
65 * The detail cause for the exception.
68 public IOException(Throwable cause) {
69 super(cause == null ? null : cause.toString(), cause)
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyChainException.java 44 * trace, the specified detail message and the specified cause.
48 * @param cause
49 * the cause of this exception, may be {@code null}.
51 public KeyChainException(String message, Throwable cause) {
52 super(message, cause);
57 * trace and the specified cause.
59 * @param cause
60 * the cause of this exception, may be {@code null}.
62 public KeyChainException(Throwable cause) {
63 super((cause == null ? null : cause.toString()), cause)
    [all...]
  /libcore/luni/src/main/java/java/lang/
IllegalArgumentException.java 48 * trace, the specified detail message and the specified cause.
52 * @param cause
53 * the cause of this exception, may be {@code null}.
56 public IllegalArgumentException(String message, Throwable cause) {
57 super(message, cause);
62 * trace and the specified cause.
64 * @param cause
65 * the cause of this exception, may be {@code null}.
68 public IllegalArgumentException(Throwable cause) {
69 super((cause == null ? null : cause.toString()), cause)
    [all...]
IllegalStateException.java 48 * trace, the specified detail message and the specified cause.
52 * @param cause
53 * the cause of this exception.
56 public IllegalStateException(String message, Throwable cause) {
57 super(message, cause);
62 * trace and the specified cause.
64 * @param cause
65 * the cause of this exception, may be {@code null}.
68 public IllegalStateException(Throwable cause) {
69 super((cause == null ? null : cause.toString()), cause)
    [all...]
SecurityException.java 47 * the specified detail message and the specified cause.
51 * @param cause
52 * the optional cause of this exception, may be {@code null}.
55 public SecurityException(String message, Throwable cause) {
56 super(message, cause);
61 * and the specified cause.
63 * @param cause
64 * the optional cause of this exception, may be {@code null}.
67 public SecurityException(Throwable cause) {
68 super((cause == null ? null : cause.toString()), cause)
    [all...]
UnsupportedOperationException.java 47 * stack trace, the specified detail message and the specified cause.
51 * @param cause
52 * the optional cause of this exception, may be {@code null}.
55 public UnsupportedOperationException(String message, Throwable cause) {
56 super(message, cause);
61 * stack trace and the specified cause.
63 * @param cause
64 * the optional cause of this exception, may be {@code null}.
67 public UnsupportedOperationException(Throwable cause) {
68 super((cause == null ? null : cause.toString()), cause)
    [all...]
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 43 * Constructs an instance with a message and a cause.
47 * @param cause
48 * the cause of the error or {@code null} if none.
50 public AnnotationFormatError(String message, Throwable cause) {
51 super(message, cause);
55 * Constructs an instance with a cause. If the cause is not
56 * {@code null}, then {@code cause.toString()} is used as the
59 * @param cause
60 * the cause of the error or {@code null} if none
    [all...]
  /libcore/luni/src/main/java/javax/net/ssl/
SSLException.java 39 * Creates a new {@code SSLException} with the specified message and cause.
43 * @param cause
44 * the cause.
46 public SSLException(String message, Throwable cause) {
48 super.initCause(cause);
52 * Creates a new {@code SSLException} with the specified cause.
54 * @param cause
55 * the cause
57 public SSLException(Throwable cause) {
58 super(cause == null ? null : cause.toString())
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
IOExceptionWithCause.java 38 * Constructs a new instance with the given message and cause.
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
46 * @param cause
47 * the cause (see {@link #getCause()}). A <code>null</code> value is allowed.
49 public IOExceptionWithCause(String message, Throwable cause) {
51 this.initCause(cause);
55 * Constructs a new instance with the given cause.
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable.
    [all...]
  /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;

Completed in 916 milliseconds

1 2 3 4 5 6 7 8 91011>>