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

123

/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.java64 * Creates a new HttpException with the specified detail message and cause.
67 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
68 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
70 public HttpException(final String message, final Throwable cause) { argument
72 ExceptionUtils.initCause(this, cause);
H A DMethodNotSupportedException.java58 * Creates a new MethodNotSupportedException with the specified detail message and cause.
61 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
62 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
64 public MethodNotSupportedException(final String message, final Throwable cause) { argument
65 super(message, cause);
H A DProtocolException.java63 * Creates a new ProtocolException 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 ProtocolException(String message, Throwable cause) { argument
70 super(message, cause);
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/
H A DASN1ParsingException.java6 private Throwable cause; field in class:ASN1ParsingException
13 ASN1ParsingException(String message, Throwable cause) argument
16 this.cause = cause;
21 return cause;
/external/bouncycastle/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/emma/core/java12/com/vladium/emma/
H A DEMMAException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
57 public EMMAException (final Throwable cause) argument
59 super (cause);
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause th
68 EMMAException(final String message, final Throwable cause) argument
82 EMMAException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
H A DEMMARuntimeException.java23 * Constructs an exception with null message and null cause.
30 * Constructs an exception with given error message/code and null cause.
40 * Constructs an exception with given error message/code and null cause.
53 * Constructs an exception with null error message/code and given cause.
55 * @param cause the cause [nested exception] [can be null]
57 public EMMARuntimeException (final Throwable cause) argument
59 super (cause);
63 * Constructs an exception with given error message/code and given cause.
66 * @param cause th
68 EMMARuntimeException(final String message, final Throwable cause) argument
82 EMMARuntimeException(final String message, final Object [] arguments, final Throwable cause) argument
[all...]
/external/guava/src/com/google/common/collect/
H A DAsynchronousComputationException.java26 * Creates a new instance with the given cause.
28 public AsynchronousComputationException(Throwable cause) { argument
29 super(cause);
H A DComputationException.java27 * Creates a new instance with the given cause.
29 public ComputationException(Throwable cause) { argument
30 super(cause);
/external/nist-sip/java/javax/sip/header/
H A DTooManyHopsException.java12 public TooManyHopsException(String message, Throwable cause) { argument
13 super(message, cause);
/external/oauth/core/src/main/java/net/oauth/
H A DOAuthException.java38 * @param cause
40 public OAuthException(Throwable cause) { argument
41 super(cause);
46 * @param cause
48 public OAuthException(String message, Throwable cause) { argument
49 super(message, cause);
/external/apache-http/src/org/apache/commons/logging/
H A DLogConfigurationException.java55 * Construct a new exception with the specified cause and a derived
58 * @param cause The underlying cause
60 public LogConfigurationException(Throwable cause) { argument
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
73 LogConfigurationException(String message, Throwable cause) argument
84 protected Throwable cause = null; field in class:LogConfigurationException
[all...]
/external/apache-http/src/org/apache/http/auth/
H A DAuthenticationException.java63 * Creates a new AuthenticationException 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 AuthenticationException(String message, Throwable cause) { argument
70 super(message, cause);
H A DInvalidCredentialsException.java62 * Creates a new InvalidCredentialsException with the specified detail message and cause.
65 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
66 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
68 public InvalidCredentialsException(String message, Throwable cause) { argument
69 super(message, cause);
H A DMalformedChallengeException.java64 * Creates a new MalformedChallengeException with the specified detail message and cause.
67 * @param cause the <tt>Throwable</tt> that caused this exception, or <tt>null</tt>
68 * if the cause is unavailable, unknown, or not a <tt>Throwable</tt>
70 public MalformedChallengeException(String message, Throwable cause) { argument
71 super(message, cause);

Completed in 409 milliseconds

123