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

1234

/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/luni/src/main/java/java/lang/
H A DReflectiveOperationException.java41 * Constructs a new exception with the given cause.
43 public ReflectiveOperationException(Throwable cause) { argument
44 super(cause);
48 * Constructs a new exception with the given detail message and cause.
50 public ReflectiveOperationException(String message, Throwable cause) { argument
51 super(message, cause);
H A DAssertionError.java36 * Constructs a new {@code AssertionError} with the given detail message and cause.
39 public AssertionError(String detailMessage, Throwable cause) { argument
40 super(detailMessage, cause);
46 * is an instance of {@link Throwable}, then it also becomes the cause of
51 * 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.
53 public LinkageError(String detailMessage, Throwable cause) { argument
54 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/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/dex/src/main/java/com/android/dex/
H A DDexException.java30 public DexException(Throwable cause) { argument
31 super(cause);
H A DDexIndexOverflowException.java27 public DexIndexOverflowException(Throwable cause) { argument
28 super(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/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);

Completed in 213 milliseconds

1234