Class TransletException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aspectran.core.component.translet.TransletException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TransletScanFailedException
The Class TransletException.
Created: 2008. 01. 07 AM 3:35:55
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionCreates a new TransletException without detail message.TransletException
(String msg) Constructs a TransletException with the specified detail message.TransletException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message.TransletException
(Throwable cause) Constructor to create exception to wrap another exception. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TransletException
public TransletException()Creates a new TransletException without detail message. -
TransletException
Constructs a TransletException with the specified detail message.- Parameters:
msg
- a message to associate with the exception
-
TransletException
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
TransletException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the detail messagecause
- the real cause of the exception
-