Package com.aspectran.core.activity
Class AdapterException
java.lang.Object
java.lang.Throwable
java.lang.Exception
com.aspectran.core.activity.ActivityException
com.aspectran.core.activity.AdapterException
- All Implemented Interfaces:
Serializable
Checked exception thrown when an error occurs while attaching
each adapter required for the activity.
Created: 2016. 2. 14.
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionSimple constructor.AdapterException
(String msg) Constructor to create exception with a message.AdapterException
(String msg, Throwable cause) Constructor to create exception to wrap another exception and pass a message.AdapterException
(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
-
AdapterException
public AdapterException()Simple constructor. -
AdapterException
Constructor to create exception with a message.- Parameters:
msg
- a message to associate with the exception
-
AdapterException
Constructor to create exception to wrap another exception.- Parameters:
cause
- the real cause of the exception
-
AdapterException
Constructor to create exception to wrap another exception and pass a message.- Parameters:
msg
- the detail messagecause
- the real cause of the exception
-