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

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
ASN1ParsingException.java 6 private Throwable cause; field in class:ASN1ParsingException
13 ASN1ParsingException(String message, Throwable cause)
16 this.cause = cause;
21 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
ExtCRLException.java 8 Throwable cause; field in class:ExtCRLException
10 ExtCRLException(String message, Throwable cause)
13 this.cause = cause;
18 return cause;
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
ExtCertificateEncodingException.java 8 Throwable cause; field in class:ExtCertificateEncodingException
10 ExtCertificateEncodingException(String message, Throwable cause)
13 this.cause = cause;
18 return cause;
  /external/bouncycastle/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;
ExtCertPathValidatorException.java 11 private Throwable cause; field in class:ExtCertPathValidatorException
13 public ExtCertPathValidatorException(String message, Throwable cause)
16 this.cause = cause;
19 public ExtCertPathValidatorException(String msg, Throwable cause,
22 super(msg, cause, certPath, index);
23 this.cause = cause;
28 return cause;
  /external/nist-sip/java/javax/sip/
DialogDoesNotExistException.java 11 public DialogDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
InvalidArgumentException.java 11 public InvalidArgumentException(String message, Throwable cause) {
12 super(message, cause);
ObjectInUseException.java 11 public ObjectInUseException(String message, Throwable cause) {
12 super(message, cause);
PeerUnavailableException.java 11 public PeerUnavailableException(String message, Throwable cause) {
12 super(message, cause);
ProviderDoesNotExistException.java 11 public ProviderDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
SipException.java 11 public SipException(String message, Throwable cause) {
12 super(message, cause);
TransactionAlreadyExistsException.java 11 public TransactionAlreadyExistsException(String message, Throwable cause) {
12 super(message, cause);
TransactionDoesNotExistException.java 11 public TransactionDoesNotExistException(String message, Throwable cause) {
12 super(message, cause);
TransactionUnavailableException.java 11 public TransactionUnavailableException(String message, Throwable cause) {
12 super(message, cause);
TransportNotSupportedException.java 11 public TransportNotSupportedException(String message, Throwable cause) {
12 super(message, cause);
  /external/apache-http/src/org/apache/commons/logging/
LogConfigurationException.java 55 * Construct a new exception with the specified cause and a derived
58 * @param cause The underlying cause
60 public LogConfigurationException(Throwable cause) {
62 this((cause == null) ? null : cause.toString(), cause);
68 * Construct a new exception with the specified detail message and cause.
71 * @param cause The underlying cause
84 protected Throwable cause = null; field in class:LogConfigurationException
    [all...]
  /external/nist-sip/java/javax/sip/header/
TooManyHopsException.java 12 public TooManyHopsException(String message, Throwable cause) {
13 super(message, cause);
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
EncryptionException.java 8 private Throwable cause; field in class:EncryptionException
18 this.cause = ex;
23 return cause;
  /libcore/luni/src/main/java/java/util/concurrent/
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 <tt>ExecutionException</tt> with the specified cause.
55 * (cause == null ? null : cause.toString())</pre
    [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: <pre> (cause ==
53 * null ? null : cause.toString())</pre> (which typically contain
    [all...]
  /libcore/luni/src/main/java/java/lang/annotation/
AnnotationFormatError.java 43 * Constructs an instance with a message and a cause.
47 * @param cause
48 * the cause of the error or {@code null} if none.
50 public AnnotationFormatError(String message, Throwable cause) {
51 super(message, cause);
55 * Constructs an instance with a cause. If the cause is not
56 * {@code null}, then {@code cause.toString()} is used as the
59 * @param cause
60 * the cause of the error or {@code null} if none
    [all...]
  /frameworks/base/core/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...]
  /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);
  /libcore/luni/src/main/java/java/io/
IOException.java 49 * Constructs a new instance of this class with detail message and cause
54 * @param cause
55 * The detail cause for the exception.
58 public IOException(String message, Throwable cause) {
59 super(message, cause);
63 * Constructs a new instance of this class with its detail cause filled in.
65 * @param cause
66 * The detail cause for the exception.
69 public IOException(Throwable cause) {
70 super(cause == null ? null : cause.toString(), cause)
    [all...]
  /libcore/luni/src/main/java/java/lang/
IllegalArgumentException.java 49 * trace, the specified detail message and the specified cause.
53 * @param cause
54 * the cause of this exception, may be {@code null}.
57 public IllegalArgumentException(String message, Throwable cause) {
58 super(message, cause);
63 * trace and the specified cause.
65 * @param cause
66 * the cause of this exception, may be {@code null}.
69 public IllegalArgumentException(Throwable cause) {
70 super((cause == null ? null : cause.toString()), cause)
    [all...]

Completed in 445 milliseconds

1 2 3 4 5 6 7 8 91011>>