Package com.aspectran.core.service
Class CoreServiceException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.aspectran.core.service.CoreServiceException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SchedulerServiceException
The Class CoreServiceException.
Created: 2008. 01. 07 AM 3:35:55
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimple constructorConstructor to create exception with a message.CoreServiceException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message.CoreServiceException
(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
-
CoreServiceException
public CoreServiceException()Simple constructor -
CoreServiceException
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
CoreServiceException
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
CoreServiceException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the detail messagecause
- the real cause of the exception
-