org.enhydra.zeus.transform
Class TransformerException
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Exception
|
+--org.enhydra.zeus.ZeusException
|
+--org.enhydra.zeus.transform.TransformerException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- NoSuchValueEnumerationException
- public class TransformerException
- extends ZeusException
TransformerException
is an extension of
ZeusException
that provides exceptions specific to
the problems that Zeus Transformer
and related classes may throw. This is generally associated with the
org.enhydra.zeus.transform
package of the Zeus distribution.
- Author:
- Brett McLaughlin
- See Also:
- Serialized Form
Constructor Summary |
TransformerException()
This will create a TransformerException . |
TransformerException(java.lang.String message)
This will create a TransformerException with the given
message. |
TransformerException(java.lang.String message,
java.lang.Throwable cause)
This will create an Exception with the given message
and wrap another Exception . |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getLocalizedMessage, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
TransformerException
public TransformerException()
This will create a TransformerException
.
TransformerException
public TransformerException(java.lang.String message)
This will create a TransformerException
with the given
message.
- Parameters:
message
- String
message indicating
the problem that occurred.
TransformerException
public TransformerException(java.lang.String message,
java.lang.Throwable cause)
This will create an Exception
with the given message
and wrap another Exception
. This is useful when
the originating Exception
should be held on to.
- Parameters:
message
- String
message indicating
the problem that occurred.cause
- Throwable
that caused this
to be thrown.
Copyright © 2002 Enhydra. All Rights Reserved.