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

1 2 34 5 6 7 8 91011>>

  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ExecutionException.java 31 public ExecutionException(String message, Throwable cause) {
32 super(message, cause);
35 public ExecutionException(Throwable cause) {
36 super(cause);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
ICUCloneNotSupportedException.java 40 * @param cause original exception (normally a {@link CloneNotSupportedException})
42 public ICUCloneNotSupportedException(Throwable cause) {
43 super(cause);
50 * @param cause original exception (normally a {@link CloneNotSupportedException})
52 public ICUCloneNotSupportedException(String message, Throwable cause) {
53 super(message, cause);
ICUException.java 38 * @param cause original exception
40 public ICUException(Throwable cause) {
41 super(cause);
48 * @param cause original exception
50 public ICUException(String message, Throwable cause) {
51 super(message, cause);
ICUUncheckedIOException.java 42 * @param cause original exception (normally a {@link java.io.IOException})
44 public ICUUncheckedIOException(Throwable cause) {
45 super(cause);
52 * @param cause original exception (normally a {@link java.io.IOException})
54 public ICUUncheckedIOException(String message, Throwable cause) {
55 super(message, cause);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
ICUCloneNotSupportedException.java 42 * @param cause original exception (normally a {@link CloneNotSupportedException})
45 public ICUCloneNotSupportedException(Throwable cause) {
46 super(cause);
53 * @param cause original exception (normally a {@link CloneNotSupportedException})
56 public ICUCloneNotSupportedException(String message, Throwable cause) {
57 super(message, cause);
ICUException.java 40 * @param cause original exception
43 public ICUException(Throwable cause) {
44 super(cause);
51 * @param cause original exception
54 public ICUException(String message, Throwable cause) {
55 super(message, cause);
ICUUncheckedIOException.java 46 * @param cause original exception (normally a {@link java.io.IOException})
49 public ICUUncheckedIOException(Throwable cause) {
50 super(cause);
57 * @param cause original exception (normally a {@link java.io.IOException})
60 public ICUUncheckedIOException(String message, Throwable cause) {
61 super(message, cause);
  /external/libjpeg-turbo/java/org/libjpegturbo/turbojpeg/
TJException.java 41 public TJException(String message, Throwable cause) {
42 super(message, cause);
49 public TJException(Throwable cause) {
50 super(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/objenesis/main/src/main/java/org/objenesis/
ObjenesisException.java 36 * @param cause Wrapped exception. The message will be the one of the cause.
38 public ObjenesisException(Throwable cause) {
39 super(cause);
44 * @param cause Wrapped exception
46 public ObjenesisException(String msg, Throwable cause) {
47 super(msg, cause);
  /external/protobuf/java/core/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 35 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
45 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
56 * Constructsa new exception with the specified detail message and cause.
59 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
65 * @param cause
66 * The cause which is saved for later retrieval by the {@link #getCause()} method. A <code>null</code>
67 * value is permitted, and indicates that the cause is nonexistent or unknown.
70 public DecoderException(String message, Throwable cause) {
71 super(message, cause);
75 * Constructs a new exception with the specified cause and a detail message of <code>(cause==null
    [all...]
EncoderException.java 37 * Constructs a new exception with <code>null</code> as its detail message. The cause is not initialized, and may
47 * Constructs a new exception with the specified detail message. The cause is not initialized, and may subsequently
58 * Constructs a new exception with the specified detail message and cause.
61 * Note that the detail message associated with <code>cause</code> is not automatically incorporated into this
67 * @param cause
68 * The cause which is saved for later retrieval by the {@link #getCause()} method. A <code>null</code>
69 * value is permitted, and indicates that the cause is nonexistent or unknown.
72 public EncoderException(String message, Throwable cause) {
73 super(message, cause);
77 * 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/base/lowpan/java/android/net/lowpan/
InterfaceDisabledException.java 34 public InterfaceDisabledException(String message, Throwable cause) {
35 super(message, cause);
38 protected InterfaceDisabledException(Exception cause) {
39 super(cause);
JoinFailedAtAuthException.java 34 public JoinFailedAtAuthException(String message, Throwable cause) {
35 super(message, cause);
38 public JoinFailedAtAuthException(Exception cause) {
39 super(cause);
JoinFailedAtScanException.java 34 public JoinFailedAtScanException(String message, Throwable cause) {
35 super(message, cause);
38 public JoinFailedAtScanException(Exception cause) {
39 super(cause);
JoinFailedException.java 34 public JoinFailedException(String message, Throwable cause) {
35 super(message, cause);
38 protected JoinFailedException(Exception cause) {
39 super(cause);
LowpanRuntimeException.java 35 public LowpanRuntimeException(String message, Throwable cause) {
36 super(message, cause);
39 public LowpanRuntimeException(Exception cause) {
40 super(cause);
NetworkAlreadyExistsException.java 34 public NetworkAlreadyExistsException(String message, Throwable cause) {
35 super(message, cause);
38 public NetworkAlreadyExistsException(Exception cause) {
39 super(cause);
OperationCanceledException.java 34 public OperationCanceledException(String message, Throwable cause) {
35 super(message, cause);
38 protected OperationCanceledException(Exception cause) {
39 super(cause);
WrongStateException.java 34 public WrongStateException(String message, Throwable cause) {
35 super(message, cause);
38 protected WrongStateException(Exception cause) {
39 super(cause);

Completed in 1897 milliseconds

1 2 34 5 6 7 8 91011>>