Searched defs:cause (Results 1 - 25 of 75) sorted by relevance

123

/libcore/luni/src/main/java/java/io/
H A DIOError.java29 * Constructs a new instance with its cause filled in.
31 * @param cause
32 * The detail cause for the error.
34 public IOError(Throwable cause) { argument
35 super(cause);
H A DIOException.java48 * 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) { argument
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) { argument
69 super(cause
[all...]
H A DInterruptedIOException.java48 * Constructs a new instance with given detail message and cause.
51 public InterruptedIOException(String detailMessage, Throwable cause) { argument
52 super(detailMessage, cause);
/libcore/dalvik/src/main/java/dalvik/system/profiler/
H A DMalformedHprofException.java28 MalformedHprofException(String message, Throwable cause) { argument
29 super(message, cause);
31 MalformedHprofException(Throwable cause) { argument
32 super(cause);
/libcore/luni/src/main/java/java/lang/
H A DAssertionError.java36 * Constructs a new {@code AssertionError} with the given detail message and cause.
40 public AssertionError(String detailMessage, Throwable cause) { argument
41 super(detailMessage, cause);
47 * is an instance of {@link Throwable}, then it also becomes the cause of
52 * optionally the cause.
H A DIllegalArgumentException.java48 * 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) { argument
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) { argument
69 super((cause
[all...]
H A DIllegalStateException.java48 * 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) { argument
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) { argument
69 super((cause
[all...]
H A DLinkageError.java50 * Constructs a new {@code LinkageError} with the given detail message and cause.
54 public LinkageError(String detailMessage, Throwable cause) { argument
55 super(detailMessage, cause);
H A DSecurityException.java47 * 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) { argument
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) { argument
68 super((cause
[all...]
H A DTypeNotPresentException.java39 * @param cause
40 * the optional cause of this exception, may be {@code null}.
42 public TypeNotPresentException(String typeName, Throwable cause) { argument
43 super("Type " + typeName + " not present", cause);
H A DUnsupportedOperationException.java47 * 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) { argument
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) { argument
68 super((cause
[all...]
/libcore/luni/src/main/java/java/lang/annotation/
H A DAnnotationFormatError.java43 * 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) { argument
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 o
62 AnnotationFormatError(Throwable cause) argument
[all...]
/libcore/luni/src/main/java/java/net/
H A DBindException.java45 * Constructs a new instance with the given detail message and cause.
48 public BindException(String detailMessage, Throwable cause) { argument
49 super(detailMessage, cause);
H A DConnectException.java45 * Constructs a new instance with the given detail message and cause.
48 public ConnectException(String detailMessage, Throwable cause) { argument
49 super(detailMessage, cause);
H A DMalformedURLException.java46 * Constructs a new instance with given detail message and cause.
49 public MalformedURLException(String detailMessage, Throwable cause) { argument
50 super(detailMessage, cause);
H A DNoRouteToHostException.java46 * Constructs a new instance with given detail message and cause.
49 public NoRouteToHostException(String detailMessage, Throwable cause) { argument
50 super(detailMessage, cause);
H A DPortUnreachableException.java45 * Constructs a new instance with given detail message and cause.
48 public PortUnreachableException(String detailMessage, Throwable cause) { argument
49 super(detailMessage, cause);
H A DProtocolException.java43 * Constructs a new instance with given detail message and cause.
46 public ProtocolException(String detailMessage, Throwable cause) { argument
47 super(detailMessage, cause);
H A DSocketException.java43 * Constructs a new instance with the given cause.
46 public SocketException(Throwable cause) { argument
47 super(cause);
51 * Constructs a new instance with given detail message and cause.
54 public SocketException(String detailMessage, Throwable cause) { argument
55 super(detailMessage, cause);
H A DSocketTimeoutException.java44 * Constructs a new instance with given cause.
47 public SocketTimeoutException(Throwable cause) { argument
48 super(null, cause);
52 * Constructs a new instance with given detail message and cause.
55 public SocketTimeoutException(String detailMessage, Throwable cause) { argument
56 super(detailMessage, cause);
H A DUnknownServiceException.java46 * Constructs a new instance with given detail message and cause.
49 public UnknownServiceException(String detailMessage, Throwable cause) { argument
50 super(detailMessage, cause);
/libcore/luni/src/main/java/java/security/
H A DDigestException.java46 * given message and the cause.
50 * @param cause
51 * the exception which is the cause for this exception.
53 public DigestException(String message, Throwable cause) { argument
54 super(message, cause);
59 * cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public DigestException(Throwable cause) { argument
65 super(cause);
[all...]
H A DGeneralSecurityException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public GeneralSecurityException(String message, Throwable cause) { argument
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public GeneralSecurityException(Throwable cause) { argument
66 super(cause);
[all...]
H A DInvalidAlgorithmParameterException.java47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidAlgorithmParameterException(String message, Throwable cause) { argument
55 super(message, cause);
60 * with the cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public InvalidAlgorithmParameterException(Throwable cause) { argument
66 super(cause);
[all...]
H A DInvalidKeyException.java47 * message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidKeyException(String message, Throwable cause) { argument
55 super(message, cause);
59 * Constructs a new instance of {@code InvalidKeyException} with the cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public InvalidKeyException(Throwable cause) { argument
65 super(cause);
[all...]

Completed in 218 milliseconds

123