HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 26 - 50 of 262) sorted by null

12 3 4 5 6 7 8 91011

  /dalvik/dx/src/com/android/dx/util/
MutabilityException.java 28 public MutabilityException(Throwable cause) {
29 super(cause);
32 public MutabilityException(String message, Throwable cause) {
33 super(message, cause);
  /external/apache-http/src/org/apache/http/client/
ClientProtocolException.java 50 public ClientProtocolException(Throwable cause) {
51 initCause(cause);
54 public ClientProtocolException(String message, Throwable cause) {
56 initCause(cause);
  /external/guava/src/com/google/common/util/concurrent/
UncheckedTimeoutException.java 32 public UncheckedTimeoutException(Throwable cause) {
33 super(cause);
36 public UncheckedTimeoutException(String message, Throwable cause) {
37 super(message, cause);
  /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);
  /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...]
  /libcore/luni/src/main/java/java/security/
DigestException.java 46 * given message and the cause.
50 * @param cause
51 * the exception which is the cause for this exception.
53 public DigestException(String message, Throwable cause) {
54 super(message, cause);
59 * cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public DigestException(Throwable cause) {
65 super(cause);
    [all...]
GeneralSecurityException.java 47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public GeneralSecurityException(String message, Throwable cause) {
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public GeneralSecurityException(Throwable cause) {
66 super(cause);
    [all...]
InvalidAlgorithmParameterException.java 47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidAlgorithmParameterException(String message, Throwable cause) {
55 super(message, cause);
60 * with the cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public InvalidAlgorithmParameterException(Throwable cause) {
66 super(cause);
    [all...]
InvalidKeyException.java 47 * message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public InvalidKeyException(String message, Throwable cause) {
55 super(message, cause);
59 * Constructs a new instance of {@code InvalidKeyException} with the cause.
61 * @param cause
62 * the exception which is the cause for this exception.
64 public InvalidKeyException(Throwable cause) {
65 super(cause);
    [all...]
KeyException.java 45 * and the cause.
49 * @param cause
50 * the exception which is the cause for this exception.
52 public KeyException(String message, Throwable cause) {
53 super(message, cause);
57 * Constructs a new instance of {@code KeyException} with the cause.
59 * @param cause
60 * the exception which is the cause for this exception.
62 public KeyException(Throwable cause) {
63 super(cause);
    [all...]
KeyManagementException.java 47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public KeyManagementException(String message, Throwable cause) {
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public KeyManagementException(Throwable cause) {
66 super(cause);
    [all...]
KeyStoreException.java 48 * given message and the cause.
52 * @param cause
53 * the exception which is the cause for this exception.
55 public KeyStoreException(String message, Throwable cause) {
56 super(message, cause);
61 * cause.
63 * @param cause
64 * the exception which is the cause for this exception.
66 public KeyStoreException(Throwable cause) {
67 super(cause);
    [all...]
NoSuchAlgorithmException.java 47 * given message and the cause.
51 * @param cause
52 * the exception which is the cause for this exception.
54 public NoSuchAlgorithmException(String message, Throwable cause) {
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the exception which is the cause for this exception.
65 public NoSuchAlgorithmException(Throwable cause) {
66 super(cause);
    [all...]
ProviderException.java 49 * message and the cause.
53 * @param cause
54 * the exception which is the cause for this exception.
56 public ProviderException(String message, Throwable cause) {
57 super(message, cause);
61 * Constructs a new instance of {@code ProviderException} with the cause.
63 * @param cause
64 * the exception which is the cause for this exception.
66 public ProviderException(Throwable cause) {
67 super(cause);
    [all...]
SignatureException.java 48 * given message and the cause.
52 * @param cause
53 * the exception which is the cause for this exception
55 public SignatureException(String message, Throwable cause) {
56 super(message, cause);
61 * cause.
63 * @param cause
64 * the exception which is the cause for this exception
66 public SignatureException(Throwable cause) {
67 super(cause);
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
CRLException.java 46 * Creates a new {@code CRLException} with the specified message and cause.
50 * @param cause
51 * the cause for this exception.
53 public CRLException(String message, Throwable cause) {
54 super(message, cause);
58 * Creates a new {@code CRLException} with the specified cause.
60 * @param cause
61 * the cause for this exception.
63 public CRLException(Throwable cause) {
64 super(cause);
    [all...]
CertPathBuilderException.java 31 * and cause.
35 * @param cause
38 public CertPathBuilderException(String msg, Throwable cause) {
39 super(msg, cause);
43 * Creates a new {@code CertPathBuilderException} with the specified cause.
45 * @param cause
48 public CertPathBuilderException(Throwable cause) {
49 super(cause);
CertStoreException.java 31 * cause.
35 * @param cause
36 * the cause why the access to the certificate store failed.
38 public CertStoreException(String msg, Throwable cause) {
39 super(msg, cause);
43 * Creates a new {@code CertStoreException} with the specified cause.
45 * @param cause
46 * the cause why the access to the certificate store failed.
48 public CertStoreException(Throwable cause) {
49 super(cause);
    [all...]
CertificateEncodingException.java 47 * message and cause.
51 * @param cause
52 * the cause.
54 public CertificateEncodingException(String message, Throwable cause) {
55 super(message, cause);
60 * cause.
62 * @param cause
63 * the cause.
65 public CertificateEncodingException(Throwable cause) {
66 super(cause);
    [all...]
CertificateException.java 47 * cause.
51 * @param cause
52 * the cause.
54 public CertificateException(String message, Throwable cause) {
55 super(message, cause);
59 * Creates a new {@code CertificateException} with the specified cause.
61 * @param cause
62 * the cause
64 public CertificateException(Throwable cause) {
65 super(cause);
    [all...]
CertificateParsingException.java 46 * message and cause.
50 * @param cause
53 public CertificateParsingException(String message, Throwable cause) {
54 super(message, cause);
59 * cause.
61 * @param cause
64 public CertificateParsingException(Throwable cause) {
65 super(cause);
  /libcore/luni/src/main/java/java/security/spec/
InvalidKeySpecException.java 51 * and cause.
55 * @param cause
56 * the cause of this exception.
58 public InvalidKeySpecException(String message, Throwable cause) {
59 super(message, cause);
63 * Creates a new {@code InvalidKeySpecException} with the specified cause.
65 * @param cause
66 * the cause of this exception.
68 public InvalidKeySpecException(Throwable cause) {
69 super(cause);
    [all...]
  /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...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/log/
InvalidTypeException.java 50 * Constructs a new exception with the specified cause and a detail message of
51 * <code>(cause==null ? null : cause.toString())</code> (which typically contains
52 * the class and detail message of cause).
53 * @param cause the cause (which is saved for later retrieval by the
55 * and indicates that the cause is nonexistent or unknown.)
58 public InvalidTypeException(Throwable cause) {
59 super(cause);
63 * Constructs a new exception with the specified detail message and cause
    [all...]

Completed in 1028 milliseconds

12 3 4 5 6 7 8 91011