Searched refs:cause (Results 1 - 25 of 298) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/
H A DTransformException.java37 * <p>A <code>TransformException</code> can contain a cause: another
56 private Throwable cause; field in class:TransformException
78 * specified detail message and cause.
80 * <code>cause</code> is <i>not</i> automatically incorporated in
84 * @param cause the cause (A <tt>null</tt> value is permitted, and
85 * indicates that the cause is nonexistent or unknown.)
87 public TransformException(String message, Throwable cause) { argument
89 this.cause = cause;
102 TransformException(Throwable cause) argument
[all...]
H A DXMLSignatureException.java37 * <p>An <code>XMLSignatureException</code> can contain a cause: another
53 private Throwable cause; field in class:XMLSignatureException
75 * specified detail message and cause.
77 * <code>cause</code> is <i>not</i> automatically incorporated in
81 * @param cause the cause (A <tt>null</tt> value is permitted, and
82 * indicates that the cause is nonexistent or unknown.)
84 public XMLSignatureException(String message, Throwable cause) { argument
86 this.cause = cause;
99 XMLSignatureException(Throwable cause) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DDataBindingException.java40 public DataBindingException(String message, Throwable cause) { argument
41 super(message, cause);
44 public DataBindingException(Throwable cause) { argument
45 super(cause);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSOAPException.java44 private Throwable cause; field in class:SOAPException
52 this.cause = null;
63 this.cause = null;
73 * @param cause a <code>Throwable</code> object that is to
76 public SOAPException(String reason, Throwable cause) { argument
78 initCause(cause);
85 public SOAPException(Throwable cause) { argument
86 super(cause.toString());
87 initCause(cause);
106 if (message == null && cause !
152 initCause(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/io/
H A DIOError.java36 * Constructs a new instance of IOError with the specified cause. The
38 * <tt>(cause==null ? null : cause.toString())</tt> (which typically
39 * contains the class and detail message of cause).
41 * @param cause
42 * The cause of this error, or <tt>null</tt> if the cause
45 public IOError(Throwable cause) { argument
46 super(cause);
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DSSLException.java57 * detail message and cause.
61 * @param cause the cause (which is saved for later retrieval by the
63 * permitted, and indicates that the cause is nonexistent or
67 public SSLException(String message, Throwable cause) { argument
69 initCause(cause);
73 * Creates a <code>SSLException</code> with the specified cause
74 * and a detail message of <tt>(cause==null ? null : cause.toString())</tt>
76 * <tt>cause</t
84 SSLException(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/
H A DBootstrapMethodError.java60 * detail message and cause.
63 * @param cause the cause, may be {@code null}.
65 public BootstrapMethodError(String s, Throwable cause) { argument
66 super(s, cause);
71 * cause.
73 * @param cause the cause, may be {@code null}.
75 public BootstrapMethodError(Throwable cause) { argument
76 // cf. Throwable(Throwable cause) constructo
[all...]
H A DError.java54 * The cause is not initialized, and may subsequently be initialized by a
63 * cause is not initialized, and may subsequently be initialized by
75 * cause. <p>Note that the detail message associated with
76 * {@code cause} is <i>not</i> automatically incorporated in
81 * @param cause the cause (which is saved for later retrieval by the
83 * permitted, and indicates that the cause is nonexistent or
87 public Error(String message, Throwable cause) { argument
88 super(message, cause);
92 * Constructs a new error with the specified cause an
104 Error(Throwable cause) argument
123 Error(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DException.java50 * The cause is not initialized, and may subsequently be initialized by a
59 * cause is not initialized, and may subsequently be initialized by
71 * cause. <p>Note that the detail message associated with
72 * {@code cause} is <i>not</i> automatically incorporated in
77 * @param cause the cause (which is saved for later retrieval by the
79 * permitted, and indicates that the cause is nonexistent or
83 public Exception(String message, Throwable cause) { argument
84 super(message, cause);
88 * Constructs a new exception with the specified cause an
101 Exception(Throwable cause) argument
119 Exception(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
H A DRuntimeException.java47 * detail message. The cause is not initialized, and may subsequently be
55 * The cause is not initialized, and may subsequently be initialized by a
67 * cause. <p>Note that the detail message associated with
68 * {@code cause} is <i>not</i> automatically incorporated in
73 * @param cause the cause (which is saved for later retrieval by the
75 * permitted, and indicates that the cause is nonexistent or
79 public RuntimeException(String message, Throwable cause) { argument
80 super(message, cause);
83 /** Constructs a new runtime exception with the specified cause an
95 RuntimeException(Throwable cause) argument
114 RuntimeException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/ast/builder/
H A DBuildException.java56 private final Throwable cause; field in class:BuildException
57 public BuildException(Throwable cause) { argument
58 if (cause == null)
59 throw new NullPointerException("null cause");
60 this.cause = cause;
64 return cause;
/openjdk7/jdk/src/share/classes/javax/xml/crypto/
H A DKeySelectorException.java36 * <p>A <code>KeySelectorException</code> can contain a cause: another
54 private Throwable cause; field in class:KeySelectorException
76 * specified detail message and cause.
78 * <code>cause</code> is <i>not</i> automatically incorporated in
82 * @param cause the cause (A <tt>null</tt> value is permitted, and
83 * indicates that the cause is nonexistent or unknown.)
85 public KeySelectorException(String message, Throwable cause) { argument
87 this.cause = cause;
100 KeySelectorException(Throwable cause) argument
[all...]
H A DURIReferenceException.java38 * <p>A <code>URIReferenceException</code> can contain a cause: another
58 private Throwable cause; field in class:URIReferenceException
82 * specified detail message and cause.
84 * <code>cause</code> is <i>not</i> automatically incorporated in
88 * @param cause the cause (A <tt>null</tt> value is permitted, and
89 * indicates that the cause is nonexistent or unknown.)
91 public URIReferenceException(String message, Throwable cause) { argument
93 this.cause = cause;
111 URIReferenceException(String message, Throwable cause, URIReference uriReference) argument
129 URIReferenceException(Throwable cause) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/
H A DSOAPExceptionImpl.java49 private Throwable cause; field in class:SOAPExceptionImpl
57 this.cause = null;
68 this.cause = null;
78 * @param cause a <code>Throwable</code> object that is to
81 public SOAPExceptionImpl(String reason, Throwable cause) { argument
83 initCause(cause);
90 public SOAPExceptionImpl(Throwable cause) { argument
91 super (cause.toString());
92 initCause(cause);
111 if (message == null && cause !
160 initCause(Throwable cause) argument
[all...]
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DJMXProviderException.java66 * @param cause the nested exception
68 public JMXProviderException(String message, Throwable cause) { argument
70 this.cause = cause;
74 return cause;
82 private Throwable cause = null; field in class:JMXProviderException
/openjdk7/jdk/src/share/classes/sun/reflect/annotation/
H A DTypeNotPresentExceptionProxy.java38 Throwable cause; field in class:TypeNotPresentExceptionProxy
40 public TypeNotPresentExceptionProxy(String typeName, Throwable cause) { argument
42 this.cause = cause;
46 return new TypeNotPresentException(typeName, cause);
/openjdk7/jdk/src/share/classes/java/nio/charset/
H A DCoderMalfunctionError.java47 * @param cause
50 public CoderMalfunctionError(Exception cause) { argument
51 super(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/apt/comp/
H A DAnnotationProcessingError.java30 AnnotationProcessingError(Throwable cause) { argument
31 super(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/processing/
H A DAnnotationProcessingError.java39 AnnotationProcessingError(Throwable cause) { argument
40 super(cause);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DAbort.java39 public Abort(Throwable cause) { argument
40 super(cause);
H A DClientCodeException.java41 public ClientCodeException(Throwable cause) { argument
42 super(cause);
/openjdk7/jdk/test/java/security/Exceptions/
H A DChainingConstructors.java38 private static Exception cause = new Exception("cause"); field in class:ChainingConstructors
41 SecurityException se = new SecurityException(cause);
42 if (!se.getCause().equals(cause)) {
45 se = new SecurityException(MSG, cause);
46 if (!se.getMessage().equals(MSG) || !se.getCause().equals(cause)) {
50 DigestException de = new DigestException(cause);
51 if (!de.getCause().equals(cause)) {
54 de = new DigestException(MSG, cause);
55 if (!de.getMessage().equals(MSG) || !de.getCause().equals(cause)) {
[all...]
/openjdk7/jaxp/src/javax/xml/datatype/
H A DDatatypeConfigurationException.java39 * no specified detail mesage and cause.</p>
59 * the specified detail message and cause.</p>
62 * @param cause The cause. A <code>null</code> value is permitted, and indicates that the cause is nonexistent or unknown.
65 public DatatypeConfigurationException(String message, Throwable cause) { argument
66 super(message, cause);
71 * the specified cause.</p>
73 * @param cause The cause
76 DatatypeConfigurationException(Throwable cause) argument
[all...]
/openjdk7/corba/src/share/classes/javax/activity/
H A DActivityCompletedException.java54 * Constructs a new throwable with the specified cause.
56 * @param cause a chained exception of type
59 public ActivityCompletedException(Throwable cause) { argument
60 this("", cause);
64 * Constructs a new throwable with the specified detail message and cause.
68 * @param cause a chained exception of type
71 public ActivityCompletedException(String message, Throwable cause) { argument
72 super(message, cause);
H A DActivityRequiredException.java52 * Constructs a new throwable with the specified cause.
54 * @param cause a chained exception of type
57 public ActivityRequiredException(Throwable cause) { argument
58 this("", cause);
62 * Constructs a new throwable with the specified detail message and cause.
66 * @param cause a chained exception of type
69 public ActivityRequiredException(String message, Throwable cause) { argument
70 super(message, cause);

Completed in 151 milliseconds

1234567891011>>