Searched defs:cause (Results 1 - 25 of 322) sorted by relevance

1234567891011>>

/external/nist-sip/java/javax/sip/
H A DDialogDoesNotExistException.java11 public DialogDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DInvalidArgumentException.java11 public InvalidArgumentException(String message, Throwable cause) { argument
12 super(message, cause);
H A DObjectInUseException.java11 public ObjectInUseException(String message, Throwable cause) { argument
12 super(message, cause);
H A DPeerUnavailableException.java11 public PeerUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DProviderDoesNotExistException.java11 public ProviderDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DSipException.java11 public SipException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionAlreadyExistsException.java11 public TransactionAlreadyExistsException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionDoesNotExistException.java11 public TransactionDoesNotExistException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransactionUnavailableException.java11 public TransactionUnavailableException(String message, Throwable cause) { argument
12 super(message, cause);
H A DTransportNotSupportedException.java11 public TransportNotSupportedException(String message, Throwable cause) { argument
12 super(message, cause);
/external/apache-http/src/org/apache/http/
H A DHttpException.java69 * Creates a new HttpException with the specified detail message and cause.
72 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
73 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
75 public HttpException(final String message, final Throwable cause) { argument
77 ExceptionUtils.initCause(this, cause);
H A DMethodNotSupportedException.java63 * Creates a new MethodNotSupportedException with the specified detail message and cause.
66 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
67 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
69 public MethodNotSupportedException(final String message, final Throwable cause) { argument
70 super(message, cause);
H A DProtocolException.java68 * Creates a new ProtocolException with the specified detail message and cause.
71 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
72 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
74 public ProtocolException(String message, Throwable cause) { argument
75 super(message, 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/operator/
H A DOperatorCreationException.java6 public OperatorCreationException(String msg, Throwable cause) argument
8 super(msg, cause);
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;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1Exception.java8 private Throwable cause; field in class:ASN1Exception
15 ASN1Exception(String message, Throwable cause) argument
18 this.cause = cause;
23 return cause;
H A DASN1ParsingException.java6 private Throwable cause; field in class:ASN1ParsingException
13 public ASN1ParsingException(String message, Throwable cause) argument
16 this.cause = cause;
21 return cause;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DCryptoException.java9 private Throwable cause; field in class:CryptoException
30 * Create a CryptoException with the given message and underlying cause.
33 * @param cause the throwable that was the underlying cause.
37 Throwable cause)
41 this.cause = cause;
46 return cause;
35 CryptoException( String message, Throwable cause) argument
H A DInvalidCipherTextException.java32 * @param cause the root cause of the exception.
36 Throwable cause)
38 super(message, cause);
34 InvalidCipherTextException( String message, Throwable cause) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtCertificateEncodingException.java8 Throwable cause; field in class:ExtCertificateEncodingException
10 ExtCertificateEncodingException(String message, Throwable cause) argument
13 this.cause = cause;
18 return cause;
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DDexException.java28 public DexException(Throwable cause) { argument
29 super(cause);

Completed in 765 milliseconds

1234567891011>>