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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
DecoderException.java 9 private Throwable cause; field in class:DecoderException
11 DecoderException(String msg, Throwable cause)
15 this.cause = cause;
20 return cause;
EncoderException.java 9 private Throwable cause; field in class:EncoderException
11 EncoderException(String msg, Throwable cause)
15 this.cause = cause;
20 return cause;
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 60 * Construct a new exception with the specified cause and a derived
63 * @param cause The underlying cause
65 public LogConfigurationException(Throwable cause) {
67 this((cause == null) ? null : cause.toString(), cause);
73 * Construct a new exception with the specified detail message and cause.
76 * @param cause The underlying cause
89 protected Throwable cause = null; field in class:LogConfigurationException
    [all...]
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/
LogConfigurationException.java 56 * Construct a new exception with the specified cause and a derived detail
59 * @param cause
60 * The underlying cause
62 public LogConfigurationException(Throwable cause) {
64 this((cause == null) ? null : cause.toString(), cause);
69 * Construct a new exception with the specified detail message and cause.
73 * @param cause
74 * The underlying cause
84 protected Throwable cause = null; field in class:LogConfigurationException
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathBuilderException.java 10 private Throwable cause; field in class:ExtCertPathBuilderException
12 public ExtCertPathBuilderException(String message, Throwable cause)
15 this.cause = cause;
18 public ExtCertPathBuilderException(String msg, Throwable cause,
21 super(msg, cause);
22 this.cause = cause;
27 return cause;
  /external/annotation-tools/scene-lib/src/annotations/io/
ParseException.java 28 public ParseException(String message, Throwable cause) {
29 super(message, cause);
32 public ParseException(Throwable cause) {
33 super(cause);
  /external/guice/core/src/com/google/inject/
OutOfScopeException.java 32 public OutOfScopeException(String message, Throwable cause) {
33 super(message, cause);
36 public OutOfScopeException(Throwable cause) {
37 super(cause);
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/
CommandSyntaxException.java 35 * @param cause
37 public CommandSyntaxException(Throwable cause) {
38 super(cause);
43 * @param cause
45 public CommandSyntaxException(String message, Throwable cause) {
46 super(message, cause);
IllegalStateException.java 35 * @param cause
37 public IllegalStateException(Throwable cause) {
38 super(cause);
43 * @param cause
45 public IllegalStateException(String message, Throwable cause) {
46 super(message, cause);
MockFtpServerException.java 28 * Create a new instance with the specified detail message and no cause
36 * Create a new instance with the specified detail message and no cause
37 * @param cause - the Throwable cause
39 public MockFtpServerException(Throwable cause) {
40 super(cause);
44 * Create a new instance with the specified detail message and cause
46 * @param cause - the Throwable cause
48 public MockFtpServerException(String message, Throwable cause) {
    [all...]
NotLoggedInException.java 35 * @param cause
37 public NotLoggedInException(Throwable cause) {
38 super(cause);
43 * @param cause
45 public NotLoggedInException(String message, Throwable cause) {
46 super(message, cause);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/
MockFtpServerException.java 28 * Create a new instance with the specified detail message and no cause
36 * Create a new instance with the specified detail message and no cause
37 * @param cause - the Throwable cause
39 public MockFtpServerException(Throwable cause) {
40 super(cause);
44 * Create a new instance with the specified detail message and cause
46 * @param cause - the Throwable cause
48 public MockFtpServerException(String message, Throwable cause) {
    [all...]
  /frameworks/base/core/java/android/accounts/
AccountsException.java 26 public AccountsException(String message, Throwable cause) {
27 super(message, cause);
29 public AccountsException(Throwable cause) {
30 super(cause);
AuthenticatorException.java 26 public AuthenticatorException(String message, Throwable cause) {
27 super(message, cause);
29 public AuthenticatorException(Throwable cause) {
30 super(cause);
NetworkErrorException.java 25 public NetworkErrorException(String message, Throwable cause) {
26 super(message, cause);
28 public NetworkErrorException(Throwable cause) {
29 super(cause);
OperationCanceledException.java 25 public OperationCanceledException(String message, Throwable cause) {
26 super(message, cause);
28 public OperationCanceledException(Throwable cause) {
29 super(cause);
  /frameworks/base/core/java/android/util/
AndroidRuntimeException.java 30 public AndroidRuntimeException(String name, Throwable cause) {
31 super(name, cause);
34 public AndroidRuntimeException(Exception cause) {
35 super(cause);
AndroidException.java 30 public AndroidException(String name, Throwable cause) {
31 super(name, cause);
34 public AndroidException(Exception cause) {
35 super(cause);
39 protected AndroidException(String message, Throwable cause, boolean enableSuppression,
41 super(message, cause, enableSuppression, writableStackTrace);
  /libcore/json/src/main/java/org/json/
JSONException.java 50 public JSONException(String message, Throwable cause) {
51 super(message, cause);
54 public JSONException(Throwable cause) {
55 super(cause);
  /libcore/ojluni/src/main/java/java/io/
IOError.java 36 * 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) {
46 super(cause);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
IllegalIcuArgumentException.java 24 public IllegalIcuArgumentException(Throwable cause) {
25 super(cause);
28 public IllegalIcuArgumentException(String errorMessage, Throwable cause) {
29 super(errorMessage, cause);
33 public synchronized IllegalIcuArgumentException initCause(Throwable cause) {
34 return (IllegalIcuArgumentException) super.initCause(cause);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
IllegalIcuArgumentException.java 22 public IllegalIcuArgumentException(Throwable cause) {
23 super(cause);
26 public IllegalIcuArgumentException(String errorMessage, Throwable cause) {
27 super(errorMessage, cause);
31 public synchronized IllegalIcuArgumentException initCause(Throwable cause) {
32 return (IllegalIcuArgumentException) super.initCause(cause);
  /frameworks/base/keystore/java/android/security/
KeyChainException.java 44 * trace, the specified detail message and the specified cause.
48 * @param cause
49 * the cause of this exception, may be {@code null}.
51 public KeyChainException(String message, Throwable cause) {
52 super(message, cause);
57 * trace and the specified cause.
59 * @param cause
60 * the cause of this exception, may be {@code null}.
62 public KeyChainException(Throwable cause) {
63 super((cause == null ? null : cause.toString()), cause)
    [all...]
  /libcore/libart/src/main/java/dalvik/system/
TransactionAbortError.java 42 * 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) {
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) {
59 this(cause == null ? null : cause.toString(), cause)
    [all...]
  /libcore/ojluni/src/main/java/java/lang/
BootstrapMethodError.java 60 * detail message and cause.
63 * @param cause the cause, may be {@code null}.
65 public BootstrapMethodError(String s, Throwable cause) {
66 super(s, cause);
71 * cause.
73 * @param cause the cause, may be {@code null}.
75 public BootstrapMethodError(Throwable cause) {
76 // cf. Throwable(Throwable cause) constructor
    [all...]

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>