nectar
Class InternalException

java.lang.Object
java.lang.Throwable
java.lang.Exception
nectar.NectarException
nectar.InternalException
- All Implemented Interfaces:
- java.io.Serializable
- Direct Known Subclasses:
- ServiceException
- public class InternalException
- extends NectarException
InternalException's are caused by the internal works of the Servlet, for example the DataException (a class that inherits from InternalException) to notify SQL errors. They are eventually handled and logged a little differently in the Action classes.
| Nested classes inherited from class java.lang.Throwable |
|
| Fields inherited from class java.lang.Exception |
|
| Fields inherited from class java.lang.Throwable |
|
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
InternalException
public InternalException()
- Creates a new instance of
InternalException without detail message.
InternalException
public InternalException(java.lang.String msg)
- Constructs an instance of
InternalException with the specified detail message.
InternalException
public InternalException(java.lang.String message,
java.lang.Throwable cause)
- Constructs an instance of
InternalException with the specified detail message and the root cause Throwable.