HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 76 - 100 of 2314) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/icu/android_icu4j/src/main/java/android/icu/util/
ICUUncheckedIOException.java 40 * @param cause original exception (normally a {@link java.io.IOException})
42 public ICUUncheckedIOException(Throwable cause) {
43 super(cause);
50 * @param cause original exception (normally a {@link java.io.IOException})
52 public ICUUncheckedIOException(String message, Throwable cause) {
53 super(message, cause);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ICUCloneNotSupportedException.java 40 * @param cause original exception (normally a {@link CloneNotSupportedException})
43 public ICUCloneNotSupportedException(Throwable cause) {
44 super(cause);
51 * @param cause original exception (normally a {@link CloneNotSupportedException})
54 public ICUCloneNotSupportedException(String message, Throwable cause) {
55 super(message, cause);
ICUException.java 38 * @param cause original exception
41 public ICUException(Throwable cause) {
42 super(cause);
49 * @param cause original exception
52 public ICUException(String message, Throwable cause) {
53 super(message, cause);
ICUUncheckedIOException.java 44 * @param cause original exception (normally a {@link java.io.IOException})
47 public ICUUncheckedIOException(Throwable cause) {
48 super(cause);
55 * @param cause original exception (normally a {@link java.io.IOException})
58 public ICUUncheckedIOException(String message, Throwable cause) {
59 super(message, cause);
  /external/jetty/src/java/org/eclipse/jetty/io/
RuntimeIOException.java 39 public RuntimeIOException(Throwable cause)
41 super(cause);
44 public RuntimeIOException(String message, Throwable cause)
46 super(message,cause);
UncheckedIOException.java 39 public UncheckedIOException(Throwable cause)
41 super(cause);
44 public UncheckedIOException(String message, Throwable cause)
46 super(message,cause);
  /external/messageformat/java/com/ibm/icu/util/
ICUCloneNotSupportedException.java 43 * @param cause original exception (normally a {@link CloneNotSupportedException})
47 public ICUCloneNotSupportedException(Throwable cause) {
48 super(cause);
55 * @param cause original exception (normally a {@link CloneNotSupportedException})
59 public ICUCloneNotSupportedException(String message, Throwable cause) {
60 super(message, cause);
ICUException.java 41 * @param cause original exception
45 public ICUException(Throwable cause) {
46 super(cause);
53 * @param cause original exception
57 public ICUException(String message, Throwable cause) {
58 super(message, cause);
ICUUncheckedIOException.java 47 * @param cause original exception (normally a {@link java.io.IOException})
51 public ICUUncheckedIOException(Throwable cause) {
52 super(cause);
59 * @param cause original exception (normally a {@link java.io.IOException})
63 public ICUUncheckedIOException(String message, Throwable cause) {
64 super(message, cause);
  /external/oauth/core/src/main/java/net/oauth/
OAuthException.java 38 * @param cause
40 public OAuthException(Throwable cause) {
41 super(cause);
46 * @param cause
48 public OAuthException(String message, Throwable cause) {
49 super(message, cause);
  /external/protobuf/java/src/main/java/com/google/protobuf/
ServiceException.java 45 public ServiceException(final Throwable cause) {
46 super(cause);
49 public ServiceException(final String message, final Throwable cause) {
50 super(message, cause);
  /external/sl4a/Common/src/org/apache/commons/codec/
DecoderException.java 36 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
46 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
57 * Constructsa new exception with the specified detail message and cause.
60 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
66 * @param cause
67 * The cause which is saved for later retrieval by the {@link #getCause()} method. A <code>null</code>
68 * value is permitted, and indicates that the cause is nonexistent or unknown.
71 public DecoderException(String message, Throwable cause) {
72 super(message, cause);
76 * Constructs a new exception with the specified cause and a detail message of <code>(cause==null
    [all...]
EncoderException.java 38 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
48 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
59 * Constructs a new exception with the specified detail message and cause.
62 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
68 * @param cause
69 * The cause which is saved for later retrieval by the {@link #getCause()} method. A <code>null</code>
70 * value is permitted, and indicates that the cause is nonexistent or unknown.
73 public EncoderException(String message, Throwable cause) {
74 super(message, cause);
78 * Constructs a new exception with the specified cause and a detail message of <code>(cause==null
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalysisException.java 39 public AnalysisException(Throwable cause) {
40 super(cause);
43 public AnalysisException(Throwable cause, String message, Object... formatArgs) {
44 super(cause, message, formatArgs);
UnresolvedClassException.java 37 public UnresolvedClassException(Throwable cause) {
38 super(cause);
41 public UnresolvedClassException(Throwable cause, String message, Object... formatArgs) {
42 super(cause, message, formatArgs);
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/error/
YAMLException.java 25 public YAMLException(Throwable cause) {
26 super(cause);
29 public YAMLException(String message, Throwable cause) {
30 super(message, cause);
  /external/testng/src/main/java/org/testng/internal/thread/
ThreadTimeoutException.java 15 public ThreadTimeoutException(Throwable cause) {
16 super(cause);
19 public ThreadTimeoutException(String msg, Throwable cause) {
20 super(msg, cause);
  /frameworks/opt/telephony/src/java/com/google/android/mms/
MmsException.java 43 * Creates a new MmsException with the specified cause.
45 * @param cause the cause.
47 public MmsException(Throwable cause) {
48 super(cause);
52 * Creates a new MmsException with the specified detail message and cause.
55 * @param cause the cause.
57 public MmsException(String message, Throwable cause) {
58 super(message, cause);
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/profiler/
MalformedHprofException.java 28 MalformedHprofException(String message, Throwable cause) {
29 super(message, cause);
31 MalformedHprofException(Throwable cause) {
32 super(cause);
  /libcore/luni/src/main/java/java/util/concurrent/
CompletionException.java 21 * 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) {
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.toString())} (which typically contains the class an
    [all...]
ExecutionException.java 23 * 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) {
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.toString())} (which typically contains the class an
    [all...]
RejectedExecutionException.java 21 * 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) {
47 super(message, cause);
52 * specified cause. The detail message is set to {@code (cause ==
53 * null ? null : cause.toString())} (which typically contain
    [all...]
  /libcore/ojluni/src/main/java/java/io/
IOException.java 63 * 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) {
81 super(message, cause);
85 * Constructs an {@code IOException} with the specified cause and a
86 * detail message of {@code (cause==null ? null : cause.toString())
    [all...]
InterruptedIOException.java 78 public InterruptedIOException(Throwable cause) {
79 super(cause);
83 * Constructs a new instance with given detail message and cause.
88 public InterruptedIOException(String detailMessage, Throwable cause) {
89 super(detailMessage, cause);
  /libcore/ojluni/src/main/java/java/lang/
IllegalArgumentException.java 58 * 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) {
73 super(message, cause);
77 * Constructs a new exception with the specified cause and a detail
78 * message of <tt>(cause==null ? null : cause.toString())</tt> (whic
    [all...]

Completed in 393 milliseconds

1 2 34 5 6 7 8 91011>>