Home | History | Annotate | Download | only in transform

Lines Matching refs:exception

31      * <code>Exception</code> for the
34 private Exception exception;
41 this.exception = null;
48 * @param msg The error message for the exception.
54 this.exception = null;
59 * given <code>Exception</code> base cause of the error.
61 * @param e The exception to be encapsulated in a
64 public TransformerFactoryConfigurationError(Exception e) {
68 this.exception = e;
73 * given <code>Exception</code> base cause and detail message.
75 * @param e The exception to be encapsulated in a
79 public TransformerFactoryConfigurationError(Exception e, String msg) {
83 this.exception = e;
88 * message for the exception and there is an encapsulated
89 * exception then the message of that exception will be returned.
97 if ((message == null) && (exception != null)) {
98 return exception.getMessage();
105 * Return the actual exception (if any) that caused this exception to
108 * @return The encapsulated exception, or null if there is none.
110 public Exception getException() {
111 return exception;