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

123456

/libcore/json/src/main/java/org/json/
H A DJSONException.java50 public JSONException(String message, Throwable cause) { argument
51 super(message, cause);
54 public JSONException(Throwable cause) { argument
55 super(cause);
/libcore/ojluni/src/main/java/java/io/
H A DIOError.java36 * Constructs a new instance of IOError with the specified cause. The
38 * <tt>(cause==null ? null : cause.toString())</tt> (which typically
39 * contains the class and detail message of cause).
41 * @param cause
42 * The cause of this error, or <tt>null</tt> if the cause
45 public IOError(Throwable cause) { argument
46 super(cause);
H A DIOException.java63 * and cause.
65 * <p> Note that the detail message associated with {@code cause} is
73 * @param cause
74 * The cause (which is saved for later retrieval by the
76 * and indicates that the cause is nonexistent or unknown.)
80 public IOException(String message, Throwable cause) { argument
81 super(message, cause);
85 * Constructs an {@code IOException} with the specified cause and a
86 * detail message of {@code (cause==null ? null : cause
98 IOException(Throwable cause) argument
[all...]
H A DInterruptedIOException.java78 public InterruptedIOException(Throwable cause) { argument
79 super(cause);
83 * Constructs a new instance with given detail message and cause.
88 public InterruptedIOException(String detailMessage, Throwable cause) { argument
89 super(detailMessage, cause);
/libcore/libart/src/main/java/dalvik/system/
H A DTransactionAbortError.java42 * Constructs a new {@code TransactionAbortError} with detail message and cause
46 * @param cause the detail cause for the exception.
48 private TransactionAbortError(String message, Throwable cause) { argument
50 initCause(cause);
54 * Constructs a new {@code TransactionAbortError} with its detail cause filled in.
56 * @param cause the detail cause for the exception.
58 private TransactionAbortError(Throwable cause) { argument
59 this(cause
[all...]
/libcore/ojluni/src/main/java/java/lang/
H A DBootstrapMethodError.java60 * detail message and cause.
63 * @param cause the cause, may be {@code null}.
65 public BootstrapMethodError(String s, Throwable cause) { argument
66 super(s, cause);
71 * cause.
73 * @param cause the cause, may be {@code null}.
75 public BootstrapMethodError(Throwable cause) { argument
76 // cf. Throwable(Throwable cause) constructo
[all...]
H A DError.java54 * The cause is not initialized, and may subsequently be initialized by a
63 * cause is not initialized, and may subsequently be initialized by
75 * cause. <p>Note that the detail message associated with
76 * {@code cause} is <i>not</i> automatically incorporated in
81 * @param cause the cause (which is saved for later retrieval by the
83 * permitted, and indicates that the cause is nonexistent or
87 public Error(String message, Throwable cause) { argument
88 super(message, cause);
92 * Constructs a new error with the specified cause an
104 Error(Throwable cause) argument
123 Error(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DException.java50 * The cause is not initialized, and may subsequently be initialized by a
59 * cause is not initialized, and may subsequently be initialized by
71 * cause. <p>Note that the detail message associated with
72 * {@code cause} is <i>not</i> automatically incorporated in
77 * @param cause the cause (which is saved for later retrieval by the
79 * permitted, and indicates that the cause is nonexistent or
83 public Exception(String message, Throwable cause) { argument
84 super(message, cause);
88 * Constructs a new exception with the specified cause an
101 Exception(Throwable cause) argument
119 Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DRuntimeException.java47 * detail message. The cause is not initialized, and may subsequently be
55 * The cause is not initialized, and may subsequently be initialized by a
67 * cause. <p>Note that the detail message associated with
68 * {@code cause} is <i>not</i> automatically incorporated in
73 * @param cause the cause (which is saved for later retrieval by the
75 * permitted, and indicates that the cause is nonexistent or
79 public RuntimeException(String message, Throwable cause) { argument
80 super(message, cause);
83 /** Constructs a new runtime exception with the specified cause an
95 RuntimeException(Throwable cause) argument
114 RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DIllegalArgumentException.java57 * cause.
59 * <p>Note that the detail message associated with <code>cause</code> is
65 * @param cause the cause (which is saved for later retrieval by the
67 * is permitted, and indicates that the cause is nonexistent or
71 public IllegalArgumentException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Constructs a new exception with the specified cause and a detail
77 * message of <tt>(cause==null ? null : cause
89 IllegalArgumentException(Throwable cause) argument
[all...]
H A DIllegalStateException.java60 * cause.
62 * <p>Note that the detail message associated with <code>cause</code> is
68 * @param cause the cause (which is saved for later retrieval by the
70 * is permitted, and indicates that the cause is nonexistent or
74 public IllegalStateException(String message, Throwable cause) { argument
75 super(message, cause);
79 * Constructs a new exception with the specified cause and a detail
80 * message of <tt>(cause==null ? null : cause
92 IllegalStateException(Throwable cause) argument
[all...]
H A DInternalError.java58 * message and cause. <p>Note that the detail message associated
59 * with {@code cause} is <i>not</i> automatically incorporated in
64 * @param cause the cause (which is saved for later retrieval by the
66 * permitted, and indicates that the cause is nonexistent or
70 public InternalError(String message, Throwable cause) { argument
71 super(message, cause);
75 * Constructs an {@code InternalError} with the specified cause
76 * and a detail message of {@code (cause==null ? null :
77 * cause
86 InternalError(Throwable cause) argument
[all...]
H A DReflectiveOperationException.java40 * message. The cause is not initialized, and may subsequently be
49 * The cause is not initialized, and may subsequently be
61 * and cause.
64 * {@code cause} is <em>not</em> automatically incorporated in
69 * @param cause the cause (which is saved for later retrieval by the
71 * permitted, and indicates that the cause is nonexistent or
74 public ReflectiveOperationException(String message, Throwable cause) { argument
75 super(message, cause);
79 * Constructs a new exception with the specified cause an
88 ReflectiveOperationException(Throwable cause) argument
[all...]
H A DSecurityException.java57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * and indicates that the cause is nonexistent or unknown.)
66 public SecurityException(String message, Throwable cause) { argument
67 super(message, cause);
71 * Creates a <code>SecurityException</code> with the specified cause
72 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
74 * <tt>cause</t
81 SecurityException(Throwable cause) argument
[all...]
H A DUnsupportedOperationException.java57 * cause.
59 * <p>Note that the detail message associated with <code>cause</code> is
65 * @param cause the cause (which is saved for later retrieval by the
67 * is permitted, and indicates that the cause is nonexistent or
71 public UnsupportedOperationException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Constructs a new exception with the specified cause and a detail
77 * message of <tt>(cause==null ? null : cause
89 UnsupportedOperationException(Throwable cause) argument
[all...]
H A DVirtualMachineError.java58 * detail message and cause. <p>Note that the detail message
59 * associated with {@code cause} is <i>not</i> automatically
64 * @param cause the cause (which is saved for later retrieval by the
66 * permitted, and indicates that the cause is nonexistent or
70 public VirtualMachineError(String message, Throwable cause) { argument
71 super(message, cause);
76 * cause and a detail message of {@code (cause==null ? null :
77 * cause
86 VirtualMachineError(Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DSSLException.java57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * permitted, and indicates that the cause is nonexistent or
67 public SSLException(String message, Throwable cause) { argument
69 initCause(cause);
73 * Creates a <code>SSLException</code> with the specified cause
74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
76 * <tt>cause</t
84 SSLException(Throwable cause) argument
[all...]
/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DLambdaConversionException.java49 * Constructs a {@code LambdaConversionException} with a message and cause.
51 * @param cause the cause
53 public LambdaConversionException(String message, Throwable cause) { argument
54 super(message, cause);
58 * Constructs a {@code LambdaConversionException} with a cause.
59 * @param cause the cause
61 public LambdaConversionException(Throwable cause) { argument
62 super(cause);
73 LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DLambdaConversionException.java49 * Constructs a {@code LambdaConversionException} with a message and cause.
51 * @param cause the cause
53 public LambdaConversionException(String message, Throwable cause) { argument
54 super(message, cause);
58 * Constructs a {@code LambdaConversionException} with a cause.
59 * @param cause the cause
61 public LambdaConversionException(Throwable cause) { argument
62 super(cause);
73 LambdaConversionException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DWrongMethodTypeException.java65 * detail message and cause.
68 * @param cause the cause of the exception, or null.
71 /*non-public*/ WrongMethodTypeException(String s, Throwable cause) { argument
72 super(s, cause);
77 * cause.
79 * @param cause the cause of the exception, or null.
82 /*non-public*/ WrongMethodTypeException(Throwable cause) { argument
83 super(cause);
[all...]
/libcore/ojluni/src/main/java/java/nio/charset/
H A DCoderMalfunctionError.java47 * @param cause
50 public CoderMalfunctionError(Exception cause) { argument
51 super(cause);
/libcore/ojluni/src/main/java/java/lang/annotation/
H A DAnnotationFormatError.java54 * detail message and cause. Note that the detail message associated
55 * with <code>cause</code> is <i>not</i> automatically incorporated in
59 * @param cause the cause (A <tt>null</tt> value is permitted, and
60 * indicates that the cause is nonexistent or unknown.)
62 public AnnotationFormatError(String message, Throwable cause) { argument
63 super(message, cause);
69 * cause and a detail message of
70 * <tt>(cause == null ? null : cause
76 AnnotationFormatError(Throwable cause) argument
[all...]
/libcore/ojluni/src/main/java/java/net/
H A DSocketException.java58 public SocketException(Throwable cause) { argument
59 super(cause);
63 public SocketException(String msg, Throwable cause) { argument
64 super(msg, cause);
H A DSocketTimeoutException.java54 public SocketTimeoutException(Throwable cause) { argument
55 super(cause);
60 public SocketTimeoutException(String msg, Throwable cause) { argument
61 super(msg, cause);
/libcore/ojluni/src/main/java/java/security/
H A DDigestException.java59 * detail message and cause.
63 * @param cause the cause (which is saved for later retrieval by the
65 * and indicates that the cause is nonexistent or unknown.)
68 public DigestException(String message, Throwable cause) { argument
69 super(message, cause);
73 * Creates a {@code DigestException} with the specified cause
74 * and a detail message of {@code (cause==null ? null : cause.toString())}
76 * {@code cause})
83 DigestException(Throwable cause) argument
[all...]

Completed in 1367 milliseconds

123456