Home | History | Annotate | Download | only in dtm

Lines Matching defs:DTMException

19  * $Id: DTMException.java 468653 2006-10-28 07:07:05Z minchau $
37 public class DTMException extends RuntimeException {
97 * with {@link #DTMException(Throwable)} or
98 * {@link #DTMException(String,Throwable)}, this method cannot be called
110 * created with {@link #DTMException(Throwable)} or
111 * {@link #DTMException(String,Throwable)}, or this method has already
131 * Create a new DTMException.
135 public DTMException(String message) {
144 * Create a new DTMException wrapping an existing exception.
148 public DTMException(Throwable e) {
157 * Wrap an existing exception in a DTMException.
166 public DTMException(String message, Throwable e) {
177 * Create a new DTMException from a message and a Locator.
186 public DTMException(String message, SourceLocator locator) {
195 * Wrap an existing exception in a DTMException.
202 public DTMException(String message, SourceLocator locator,
342 if (exception instanceof DTMException) {
344 ((DTMException) exception)