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

1234

/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...]
/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/util/concurrent/
H A DCompletionException.java21 * The cause is not initialized, and may subsequently be
28 * message. The cause is not initialized, and may subsequently be
39 * message and cause.
42 * @param cause the cause (which is saved for later retrieval by the
45 public CompletionException(String message, Throwable cause) { argument
46 super(message, cause);
50 * Constructs a {@code CompletionException} with the specified cause.
51 * The detail message is set to {@code (cause == null ? null :
52 * cause
58 CompletionException(Throwable cause) argument
[all...]
H A DExecutionException.java23 * The cause is not initialized, and may subsequently be
30 * message. The cause is not initialized, and may subsequently be
41 * message and cause.
44 * @param cause the cause (which is saved for later retrieval by the
47 public ExecutionException(String message, Throwable cause) { argument
48 super(message, cause);
52 * Constructs an {@code ExecutionException} with the specified cause.
53 * The detail message is set to {@code (cause == null ? null :
54 * cause
60 ExecutionException(Throwable cause) argument
[all...]
H A DRejectedExecutionException.java21 * The cause is not initialized, and may subsequently be
28 * specified detail message. The cause is not initialized, and may
40 * specified detail message and cause.
43 * @param cause the cause (which is saved for later retrieval by the
46 public RejectedExecutionException(String message, Throwable cause) { argument
47 super(message, cause);
52 * specified cause. The detail message is set to {@code (cause ==
53 * null ? null : cause
59 RejectedExecutionException(Throwable cause) argument
[all...]
/libcore/luni/src/main/java/javax/xml/xpath/
H A DXPathExpressionException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathExpressionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathExpressionException(Throwable cause) { argument
59 super(cause);
H A DXPathFactoryConfigurationException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFactoryConfigurationException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFactoryConfigurationException(Throwable cause) { argument
59 super(cause);
H A DXPathFunctionException.java39 * <p>The <code>cause</code> is not initialized.</p>
50 * <p>Constructs a new <code>XPathFunctionException</code> with the specified <code>cause</code>.</p>
52 * <p>If <code>cause</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
54 * @param cause The cause.
56 * @throws NullPointerException if <code>cause</code> is <code>null</code>.
58 public XPathFunctionException(Throwable cause) { argument
59 super(cause);
/libcore/ojluni/src/main/java/java/lang/
H A DAssertionError.java68 * becomes the <i>cause</i> of the newly constructed assertion error.
153 * detail message and cause.
156 * {@code cause} is <i>not</i> automatically incorporated in
160 * @param cause the cause, may be {@code null}
164 public AssertionError(String message, Throwable cause) { argument
165 super(message, cause);
H A DIllegalArgumentException.java58 * cause.
60 * <p>Note that the detail message associated with <code>cause</code> is
66 * @param cause the cause (which is saved for later retrieval by the
68 * is permitted, and indicates that the cause is nonexistent or
72 public IllegalArgumentException(String message, Throwable cause) { argument
73 super(message, cause);
77 * Constructs a new exception with the specified cause and a detail
78 * message of <tt>(cause==null ? null : cause
90 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 DLinkageError.java60 * message and cause.
63 * @param cause the cause, may be {@code null}
66 public LinkageError(String s, Throwable cause) { argument
67 super(s, cause);
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 DTypeNotPresentException.java53 * with the specified cause.
56 * @param cause the exception that was thrown when the system attempted to
59 public TypeNotPresentException(String typeName, Throwable cause) { argument
60 super("Type " + typeName + " not present", cause);
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/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 DBindException.java57 public BindException(String msg, Throwable cause) { argument
58 super(msg, cause);
H A DConnectException.java57 public ConnectException(String msg, Throwable cause) { argument
58 super(msg, cause);

Completed in 244 milliseconds

1234