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

1 2 3 4 5 6 7 8 91011

  /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/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);
  /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 49 * Constructs a new instance of this class with detail message and cause
54 * @param cause
55 * The detail cause for the exception.
58 public IOException(String message, Throwable cause) {
59 super(message, cause);
63 * Constructs a new instance of this class with its detail cause filled in.
65 * @param cause
66 * The detail cause for the exception.
69 public IOException(Throwable cause) {
70 super(cause == null ? null : cause.toString(), cause)
    [all...]
  /libcore/luni/src/main/java/java/lang/
IllegalArgumentException.java 49 * trace, the specified detail message and the specified cause.
53 * @param cause
54 * the cause of this exception, may be {@code null}.
57 public IllegalArgumentException(String message, Throwable cause) {
58 super(message, cause);
63 * trace and the specified cause.
65 * @param cause
66 * the cause of this exception, may be {@code null}.
69 public IllegalArgumentException(Throwable cause) {
70 super((cause == null ? null : cause.toString()), cause)
    [all...]
IllegalStateException.java 49 * trace, the specified detail message and the specified cause.
53 * @param cause
54 * the cause of this exception.
57 public IllegalStateException(String message, Throwable cause) {
58 super(message, cause);
63 * trace and the specified cause.
65 * @param cause
66 * the cause of this exception, may be {@code null}.
69 public IllegalStateException(Throwable cause) {
70 super((cause == null ? null : cause.toString()), cause)
    [all...]
SecurityException.java 48 * the specified detail message and the specified cause.
52 * @param cause
53 * the optional cause of this exception, may be {@code null}.
56 public SecurityException(String message, Throwable cause) {
57 super(message, cause);
62 * and the specified cause.
64 * @param cause
65 * the optional cause of this exception, may be {@code null}.
68 public SecurityException(Throwable cause) {
69 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/src/main/java/org/bouncycastle/asn1/
ASN1ParsingException.java 6 private Throwable cause; field in class:ASN1ParsingException
13 ASN1ParsingException(String message, Throwable cause)
16 this.cause = cause;
21 return cause;
  /external/bouncycastle/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/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;
  /frameworks/base/voip/java/android/net/sip/
SipException.java 30 public SipException(String message, Throwable cause) {
32 super(message, ((cause instanceof javax.sip.SipException)
33 && (cause.getCause() != null))
34 ? cause.getCause()
35 : cause);
  /external/guava/src/com/google/common/collect/
AsynchronousComputationException.java 26 * Creates a new instance with the given cause.
28 public AsynchronousComputationException(Throwable cause) {
29 super(cause);
  /frameworks/base/core/java/android/util/
AndroidException.java 30 public AndroidException(Exception cause) {
31 super(cause);
AndroidRuntimeException.java 30 public AndroidRuntimeException(Exception cause) {
31 super(cause);
  /dalvik/dx/src/com/android/dx/cf/code/
SimException.java 30 public SimException(Throwable cause) {
31 super(cause);
34 public SimException(String message, Throwable cause) {
35 super(message, cause);
  /dalvik/dx/src/com/android/dx/cf/iface/
ParseException.java 30 public ParseException(Throwable cause) {
31 super(cause);
34 public ParseException(String message, Throwable cause) {
35 super(message, cause);

Completed in 1102 milliseconds

1 2 3 4 5 6 7 8 91011