Searched refs:cause (Results 26 - 50 of 298) sorted by relevance

1234567891011>>

/openjdk7/corba/src/share/classes/javax/activity/
H A DInvalidActivityException.java56 * Constructs a new throwable with the specified cause.
58 * @param cause a chained exception of type
61 public InvalidActivityException(Throwable cause) { argument
62 this("", cause);
66 * Constructs a new throwable with the specified detail message and cause.
70 * @param cause a chained exception of type
73 public InvalidActivityException(String message, Throwable cause) { argument
74 super(message, cause);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DDebuggerException.java36 public DebuggerException(String message, Throwable cause) { argument
37 super(message, cause);
40 public DebuggerException(Throwable cause) { argument
41 super(cause);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/posix/elf/
H A DELFException.java41 public ELFException(Throwable cause) { argument
42 super(cause);
45 public ELFException(String message, Throwable cause) { argument
46 super(message, cause);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/
H A DCOFFException.java37 public COFFException(Throwable cause) { argument
38 super(cause);
45 public COFFException(String message, Throwable cause) { argument
46 super(message, cause);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/soql/
H A DSOQLException.java32 public SOQLException(String msg, Throwable cause) { argument
33 super(msg, cause);
36 public SOQLException(Throwable cause) { argument
37 super(cause);
/openjdk7/jdk/src/share/classes/javax/smartcardio/
H A DCardException.java50 * Constructs a new CardException with the specified cause and a detail message
51 * of <code>(cause==null ? null : cause.toString())</code>.
53 * @param cause the cause of this exception or null
55 public CardException(Throwable cause) { argument
56 super(cause);
60 * Constructs a new CardException with the specified detail message and cause.
63 * @param cause the cause o
65 CardException(String message, Throwable cause) argument
[all...]
H A DCardNotPresentException.java50 * Constructs a new CardNotPresentException with the specified cause and a detail message
51 * of <code>(cause==null ? null : cause.toString())</code>.
53 * @param cause the cause of this exception or null
55 public CardNotPresentException(Throwable cause) { argument
56 super(cause);
60 * Constructs a new CardNotPresentException with the specified detail message and cause.
63 * @param cause the cause o
65 CardNotPresentException(String message, Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DIOException.java63 * and cause.
65 * <p> Note that the detail message associated with {@code cause} is
73 * @param cause
74 * The cause (which is saved for later retrieval by the
76 * and indicates that the cause is nonexistent or unknown.)
80 public IOException(String message, Throwable cause) { argument
81 super(message, cause);
85 * Constructs an {@code IOException} with the specified cause and a
86 * detail message of {@code (cause==null ? null : cause
98 IOException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DIllegalArgumentException.java58 * cause.
60 * <p>Note that the detail message associated with <code>cause</code> is
66 * @param cause the cause (which is saved for later retrieval by the
68 * is permitted, and indicates that the cause is nonexistent or
72 public IllegalArgumentException(String message, Throwable cause) { argument
73 super(message, cause);
77 * Constructs a new exception with the specified cause and a detail
78 * message of <tt>(cause==null ? null : cause
90 IllegalArgumentException(Throwable cause) argument
[all...]
H A DIllegalStateException.java60 * cause.
62 * <p>Note that the detail message associated with <code>cause</code> is
68 * @param cause the cause (which is saved for later retrieval by the
70 * is permitted, and indicates that the cause is nonexistent or
74 public IllegalStateException(String message, Throwable cause) { argument
75 super(message, cause);
79 * Constructs a new exception with the specified cause and a detail
80 * message of <tt>(cause==null ? null : cause
92 IllegalStateException(Throwable cause) argument
[all...]
H A DReflectiveOperationException.java40 * message. The cause is not initialized, and may subsequently be
49 * The cause is not initialized, and may subsequently be
61 * and cause.
64 * {@code cause} is <em>not</em> automatically incorporated in
69 * @param cause the cause (which is saved for later retrieval by the
71 * permitted, and indicates that the cause is nonexistent or
74 public ReflectiveOperationException(String message, Throwable cause) { argument
75 super(message, cause);
79 * Constructs a new exception with the specified cause an
88 ReflectiveOperationException(Throwable cause) argument
[all...]
H A DSecurityException.java57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * and indicates that the cause is nonexistent or unknown.)
66 public SecurityException(String message, Throwable cause) { argument
67 super(message, cause);
71 * Creates a <code>SecurityException</code> with the specified cause
72 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
74 * <tt>cause</t
81 SecurityException(Throwable cause) argument
[all...]
H A DUnsupportedOperationException.java57 * cause.
59 * <p>Note that the detail message associated with <code>cause</code> is
65 * @param cause the cause (which is saved for later retrieval by the
67 * is permitted, and indicates that the cause is nonexistent or
71 public UnsupportedOperationException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Constructs a new exception with the specified cause and a detail
77 * message of <tt>(cause==null ? null : cause
89 UnsupportedOperationException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/annotation/
H A DAnnotationFormatError.java54 * detail message and cause. Note that the detail message associated
55 * with <code>cause</code> is <i>not</i> automatically incorporated in
59 * @param cause the cause (A <tt>null</tt> value is permitted, and
60 * indicates that the cause is nonexistent or unknown.)
62 public AnnotationFormatError(String message, Throwable cause) { argument
63 super(message, cause);
69 * cause and a detail message of
70 * <tt>(cause == null ? null : cause
76 AnnotationFormatError(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DWrongMethodTypeException.java65 * detail message and cause.
68 * @param cause the cause of the exception, or null.
71 /*non-public*/ WrongMethodTypeException(String s, Throwable cause) { argument
72 super(s, cause);
77 * cause.
79 * @param cause the cause of the exception, or null.
82 /*non-public*/ WrongMethodTypeException(Throwable cause) { argument
83 super(cause);
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DDigestException.java59 * detail message and cause.
63 * @param cause the cause (which is saved for later retrieval by the
65 * and indicates that the cause is nonexistent or unknown.)
68 public DigestException(String message, Throwable cause) { argument
69 super(message, cause);
73 * Creates a <code>DigestException</code> with the specified cause
74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
76 * <tt>cause</t
83 DigestException(Throwable cause) argument
[all...]
H A DGeneralSecurityException.java61 * 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 GeneralSecurityException(String message, Throwable cause) { argument
71 super(message, cause);
75 * Creates a <code>GeneralSecurityException</code> with the specified cause
76 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
78 * <tt>cause</t
85 GeneralSecurityException(Throwable cause) argument
[all...]
H A DInvalidAlgorithmParameterException.java69 * specified detail message and cause.
73 * @param cause the cause (which is saved for later retrieval by the
75 * and indicates that the cause is nonexistent or unknown.)
78 public InvalidAlgorithmParameterException(String message, Throwable cause) { argument
79 super(message, cause);
84 * specified cause and a detail message of
85 * <tt>(cause==null ? null : cause.toString())</tt>
87 * <tt>cause</t
94 InvalidAlgorithmParameterException(Throwable cause) argument
[all...]
H A DInvalidKeyException.java62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public InvalidKeyException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Creates a <code>InvalidKeyException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</t
86 InvalidKeyException(Throwable cause) argument
[all...]
H A DKeyException.java63 * detail message and cause.
67 * @param cause the cause (which is saved for later retrieval by the
69 * and indicates that the cause is nonexistent or unknown.)
72 public KeyException(String message, Throwable cause) { argument
73 super(message, cause);
77 * Creates a <code>KeyException</code> with the specified cause
78 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
80 * <tt>cause</t
87 KeyException(Throwable cause) argument
[all...]
H A DKeyManagementException.java72 * detail message and cause.
76 * @param cause the cause (which is saved for later retrieval by the
78 * and indicates that the cause is nonexistent or unknown.)
81 public KeyManagementException(String message, Throwable cause) { argument
82 super(message, cause);
86 * Creates a <code>KeyManagementException</code> with the specified cause
87 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
89 * <tt>cause</t
96 KeyManagementException(Throwable cause) argument
[all...]
H A DKeyStoreException.java63 * detail message and cause.
67 * @param cause the cause (which is saved for later retrieval by the
69 * and indicates that the cause is nonexistent or unknown.)
72 public KeyStoreException(String message, Throwable cause) { argument
73 super(message, cause);
77 * Creates a <code>KeyStoreException</code> with the specified cause
78 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
80 * <tt>cause</t
87 KeyStoreException(Throwable cause) argument
[all...]
H A DNoSuchAlgorithmException.java62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public NoSuchAlgorithmException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Creates a <code>NoSuchAlgorithmException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</t
86 NoSuchAlgorithmException(Throwable cause) argument
[all...]
H A DProviderException.java62 * detail message and cause.
66 * @param cause the cause (which is saved for later retrieval by the
68 * and indicates that the cause is nonexistent or unknown.)
71 public ProviderException(String message, Throwable cause) { argument
72 super(message, cause);
76 * Creates a <code>ProviderException</code> with the specified cause
77 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
79 * <tt>cause</t
86 ProviderException(Throwable cause) argument
[all...]
H A DSignatureException.java60 * 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) { argument
70 super(message, cause);
74 * Creates a <code>SignatureException</code> with the specified cause
75 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
77 * <tt>cause</t
84 SignatureException(Throwable cause) argument
[all...]

Completed in 102 milliseconds

1234567891011>>