HomeSort by relevance Sort by last modified time
    Searched refs:cause (Results 126 - 150 of 3404) sorted by null

1 2 3 4 56 7 8 91011>>

  /libcore/ojluni/src/main/java/java/security/
SignatureException.java 60 * detail message and cause.
64 * @param cause the cause (which is saved for later retrieval by the
66 * and indicates that the cause is nonexistent or unknown.)
69 public SignatureException(String message, Throwable cause) {
70 super(message, cause);
74 * Creates a {@code SignatureException} with the specified cause
75 * and a detail message of {@code (cause==null ? null : cause.toString())}
77 * {@code cause})
    [all...]
  /libcore/ojluni/src/main/java/java/security/cert/
CRLException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CRLException(String message, Throwable cause) {
71 super(message, cause);
75 * Creates a {@code CRLException} with the specified cause
76 * and a detail message of {@code (cause==null ? null : cause.toString())}
78 * {@code cause})
    [all...]
CertPathBuilderException.java 79 * detail message is set to ({@code cause==null ? null : cause.toString()})
81 * cause).
83 * @param cause the cause (which is saved for later retrieval by the
85 * permitted, and indicates that the cause is nonexistent or unknown.)
87 public CertPathBuilderException(Throwable cause) {
88 super(cause);
93 * detail message and cause.
96 * @param cause the cause (which is saved for later retrieval by th
    [all...]
CertStoreException.java 78 * cause, which may be useful for debugging. The detail message is
79 * set to ({@code cause==null ? null : cause.toString()}) (which
80 * typically contains the class and detail message of cause).
82 * @param cause the cause (which is saved for later retrieval by the
84 * permitted, and indicates that the cause is nonexistent or unknown.)
86 public CertStoreException(Throwable cause) {
87 super(cause);
92 * message and cause
    [all...]
CertificateEncodingException.java 60 * detail message and cause.
64 * @param cause the cause (which is saved for later retrieval by the
66 * and indicates that the cause is nonexistent or unknown.)
69 public CertificateEncodingException(String message, Throwable cause) {
70 super(message, cause);
75 * with the specified cause and a detail message of
76 * {@code (cause==null ? null : cause.toString())}
78 * {@code cause})
    [all...]
CertificateException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CertificateException(String message, Throwable cause) {
71 super(message, cause);
75 * Creates a {@code CertificateException} with the specified cause
76 * and a detail message of {@code (cause==null ? null : cause.toString())}
78 * {@code cause})
    [all...]
CertificateParsingException.java 61 * detail message and cause.
65 * @param cause the cause (which is saved for later retrieval by the
67 * and indicates that the cause is nonexistent or unknown.)
70 public CertificateParsingException(String message, Throwable cause) {
71 super(message, cause);
76 * specified cause and a detail message of
77 * {@code (cause==null ? null : cause.toString())}
79 * {@code cause})
    [all...]
  /libcore/ojluni/src/main/java/java/security/spec/
InvalidKeySpecException.java 67 * detail message and cause.
71 * @param cause the cause (which is saved for later retrieval by the
73 * and indicates that the cause is nonexistent or unknown.)
76 public InvalidKeySpecException(String message, Throwable cause) {
77 super(message, cause);
81 * Creates a {@code InvalidKeySpecException} with the specified cause
82 * and a detail message of {@code (cause==null ? null : cause.toString())}
84 * {@code cause})
    [all...]
  /libcore/ojluni/src/main/java/java/util/
ConcurrentModificationException.java 91 * Constructs a new exception with the specified cause and a detail
92 * message of {@code (cause==null ? null : cause.toString())} (which
93 * typically contains the class and detail message of {@code cause}.
95 * @param cause the cause (which is saved for later retrieval by the
97 * permitted, and indicates that the cause is nonexistent or
101 public ConcurrentModificationException(Throwable cause) {
102 super(cause);
107 * cause
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
CompletionException.java 50 * The cause is not initialized, and may subsequently be
57 * message. The cause is not initialized, and may subsequently be
68 * message and cause.
71 * @param cause the cause (which is saved for later retrieval by the
74 public CompletionException(String message, Throwable cause) {
75 super(message, cause);
79 * Constructs a {@code CompletionException} with the specified cause.
80 * The detail message is set to {@code (cause == null ? null :
81 * cause.toString())} (which typically contains the class an
    [all...]
ExecutionException.java 52 * The cause is not initialized, and may subsequently be
59 * message. The cause is not initialized, and may subsequently be
70 * message and cause.
73 * @param cause the cause (which is saved for later retrieval by the
76 public ExecutionException(String message, Throwable cause) {
77 super(message, cause);
81 * Constructs an {@code ExecutionException} with the specified cause.
82 * The detail message is set to {@code (cause == null ? null :
83 * cause.toString())} (which typically contains the class an
    [all...]
RejectedExecutionException.java 50 * The cause is not initialized, and may subsequently be
57 * specified detail message. The cause is not initialized, and may
69 * specified detail message and cause.
72 * @param cause the cause (which is saved for later retrieval by the
75 public RejectedExecutionException(String message, Throwable cause) {
76 super(message, cause);
81 * specified cause. The detail message is set to {@code (cause ==
82 * null ? null : cause.toString())} (which typically contain
    [all...]
  /libcore/ojluni/src/main/java/java/util/prefs/
InvalidPreferencesFormatException.java 43 * cause.
45 * @param cause the cause (which is saved for later retrieval by the
48 public InvalidPreferencesFormatException(Throwable cause) {
49 super(cause);
65 * detail message and cause.
69 * @param cause the cause (which is saved for later retrieval by the
72 public InvalidPreferencesFormatException(String message, Throwable cause) {
73 super(message, cause);
    [all...]
  /packages/apps/Camera2/src/com/android/camera/one/
OneCameraAccessException.java 26 public OneCameraAccessException(String message, Throwable cause) {
27 super(message, cause);
30 public OneCameraAccessException(Throwable cause) {
31 super(cause);
  /packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
CameraCaptureSessionClosedException.java 32 public CameraCaptureSessionClosedException(String message, Throwable cause) {
33 super(message, cause);
36 public CameraCaptureSessionClosedException(Throwable cause) {
37 super(cause);
  /packages/apps/Messaging/src/android/support/v7/mms/
ApnException.java 32 public ApnException(Throwable cause) {
33 super(cause);
36 public ApnException(String message, Throwable cause) {
37 super(message, cause);
MmsNetworkException.java 32 public MmsNetworkException(Throwable cause) {
33 super(cause);
36 public MmsNetworkException(String message, Throwable cause) {
37 super(message, cause);
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
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...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/
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...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
SmsException.java 42 * Creates a new SmsException with the specified cause.
44 * @param cause the cause.
46 public SmsException(Throwable cause) {
47 super(cause);
51 * Creates a new SmsException with the specified detail message and cause.
54 * @param cause the cause.
56 public SmsException(String message, Throwable cause) {
57 super(message, cause);
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/snep/
SnepException.java 25 public SnepException(Exception cause) {
26 super(cause);
29 public SnepException(String message, Exception cause) {
30 super(message, cause);
  /packages/services/Car/car-lib/src/android/car/
CarNotConnectedException.java 33 public CarNotConnectedException(String name, Throwable cause) {
34 super(name, cause);
37 public CarNotConnectedException(Exception cause) {
38 super(cause);
  /packages/services/Car/car-support-lib/src/android/support/car/
CarNotConnectedException.java 35 public CarNotConnectedException(String name, Throwable cause) {
36 super(name, cause);
39 public CarNotConnectedException(Exception cause) {
40 super(cause);
  /packages/services/Mms/src/com/android/mms/service/exception/
ApnException.java 32 public ApnException(Throwable cause) {
33 super(cause);
36 public ApnException(String message, Throwable cause) {
37 super(message, cause);
MmsNetworkException.java 32 public MmsNetworkException(Throwable cause) {
33 super(cause);
36 public MmsNetworkException(String message, Throwable cause) {
37 super(message, cause);

Completed in 925 milliseconds

1 2 3 4 56 7 8 91011>>