Searched refs:cause (Results 51 - 75 of 581) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/
H A DNotLoggedInException.java35 * @param cause
37 public NotLoggedInException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public NotLoggedInException(String message, Throwable cause) { argument
46 super(message, cause);
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/
H A DCommandSyntaxException.java35 * @param cause
37 public CommandSyntaxException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public CommandSyntaxException(String message, Throwable cause) { argument
46 super(message, cause);
H A DIllegalStateException.java35 * @param cause
37 public IllegalStateException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public IllegalStateException(String message, Throwable cause) { argument
46 super(message, cause);
H A DMockFtpServerException.java28 * 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) { argument
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) { argument
[all...]
H A DNotLoggedInException.java35 * @param cause
37 public NotLoggedInException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public NotLoggedInException(String message, Throwable cause) { argument
46 super(message, cause);
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/
H A DCommandSyntaxException.java35 * @param cause
37 public CommandSyntaxException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public CommandSyntaxException(String message, Throwable cause) { argument
46 super(message, cause);
H A DIllegalStateException.java35 * @param cause
37 public IllegalStateException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public IllegalStateException(String message, Throwable cause) { argument
46 super(message, cause);
H A DMockFtpServerException.java28 * 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) { argument
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) { argument
[all...]
H A DNotLoggedInException.java35 * @param cause
37 public NotLoggedInException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public NotLoggedInException(String message, Throwable cause) { argument
46 super(message, cause);
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/
H A DCommandSyntaxException.java35 * @param cause
37 public CommandSyntaxException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public CommandSyntaxException(String message, Throwable cause) { argument
46 super(message, cause);
H A DIllegalStateException.java35 * @param cause
37 public IllegalStateException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public IllegalStateException(String message, Throwable cause) { argument
46 super(message, cause);
H A DMockFtpServerException.java28 * 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) { argument
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) { argument
[all...]
H A DNotLoggedInException.java35 * @param cause
37 public NotLoggedInException(Throwable cause) { argument
38 super(cause);
43 * @param cause
45 public NotLoggedInException(String message, Throwable cause) { argument
46 super(message, cause);
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/core/
H A DMockFtpServerException.java28 * 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) { argument
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) { argument
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DIllegalIcuArgumentException.java24 public IllegalIcuArgumentException(Throwable cause) { argument
25 super(cause);
28 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { argument
29 super(errorMessage, cause);
33 public synchronized IllegalIcuArgumentException initCause(Throwable cause) { argument
34 return (IllegalIcuArgumentException) super.initCause(cause);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DIllegalIcuArgumentException.java22 public IllegalIcuArgumentException(Throwable cause) { argument
23 super(cause);
26 public IllegalIcuArgumentException(String errorMessage, Throwable cause) { argument
27 super(errorMessage, cause);
31 public synchronized IllegalIcuArgumentException initCause(Throwable cause) { argument
32 return (IllegalIcuArgumentException) super.initCause(cause);
/external/guice/core/src/com/google/inject/internal/
H A DExceptions.java29 * Rethrows the exception (or it's cause, if it has one) directly if possible.
35 Throwable cause = throwable;
36 if(cause.getCause() != null) {
37 cause = cause.getCause();
39 return rethrow(cause);
58 public UnhandledCheckedUserException(Throwable cause) { argument
59 super(cause);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
H A DExtCertPathValidatorException.java11 private Throwable cause; field in class:ExtCertPathValidatorException
13 public ExtCertPathValidatorException(String message, Throwable cause) argument
16 this.cause = cause;
19 public ExtCertPathValidatorException(String msg, Throwable cause, argument
22 super(msg, cause, certPath, index);
23 this.cause = cause;
28 return cause;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DCertException.java9 private Throwable cause; field in class:CertException
11 public CertException(String msg, Throwable cause) argument
15 this.cause = cause;
25 return cause;
H A DCertIOException.java11 private Throwable cause; field in class:CertIOException
13 public CertIOException(String msg, Throwable cause) argument
17 this.cause = cause;
27 return cause;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
H A DOCSPException.java6 private Throwable cause; field in class:OCSPException
16 Throwable cause)
20 this.cause = cause;
25 return cause;
14 OCSPException( String name, Throwable cause) argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cmc/
H A DCMCException.java6 private final Throwable cause; field in class:CMCException
13 public CMCException(String msg, Throwable cause) argument
16 this.cause = cause;
21 return cause;
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/
H A DOperatorException.java6 private Throwable cause; field in class:OperatorException
8 public OperatorException(String msg, Throwable cause) argument
12 this.cause = cause;
22 return cause;
H A DOperatorStreamException.java8 private Throwable cause; field in class:OperatorStreamException
10 public OperatorStreamException(String msg, Throwable cause) argument
14 this.cause = cause;
19 return cause;
H A DRuntimeOperatorException.java6 private Throwable cause; field in class:RuntimeOperatorException
13 public RuntimeOperatorException(String msg, Throwable cause) argument
17 this.cause = cause;
22 return cause;

Completed in 619 milliseconds

1234567891011>>