Lines Matching refs:cause

38  * <p>A <code>URIReferenceException</code> can contain a cause: another
58 private Throwable cause;
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) {
93 this.cause = cause;
98 * specified detail message, cause and <code>URIReference</code>.
100 * <code>cause</code> is <i>not</i> automatically incorporated in
104 * @param cause the cause (A <tt>null</tt> value is permitted, and
105 * indicates that the cause is nonexistent or unknown.)
111 public URIReferenceException(String message, Throwable cause,
113 this(message, cause);
122 * cause and a detail message of <code>(cause==null ? null :
123 * cause.toString())</code> (which typically contains the class and detail
124 * message of <code>cause</code>).
126 * @param cause the cause (A <tt>null</tt> value is permitted, and
127 * indicates that the cause is nonexistent or unknown.)
129 public URIReferenceException(Throwable cause) {
130 super(cause==null ? null : cause.toString());
131 this.cause = cause;
146 * Returns the cause of this <code>URIReferenceException</code> or
147 * <code>null</code> if the cause is nonexistent or unknown. (The
148 * cause is the throwable that caused this
151 * @return the cause of this <code>URIReferenceException</code> or
152 * <code>null</code> if the cause is nonexistent or unknown.
155 return cause;
160 * the cause's backtrace to the standard error stream.
164 //XXX print backtrace of cause
169 * the cause's backtrace to the specified print stream.
175 //XXX print backtrace of cause
180 * the cause's backtrace to the specified print writer.
186 //XXX print backtrace of cause