calhoun.util
Class ErrorException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
calhoun.util.ErrorException
- All Implemented Interfaces:
- java.io.Serializable
public final class ErrorException
- extends java.lang.RuntimeException
Exception type for general errors. It is unchecked to simplify error handling in the rest of our java code.
It should be used for unrecoverable errors that are probably not due to a system configuration. Users should
be expected to find a developer when one of these occurs. In general these will be bugs in the code or corner
cases you have not implemented. If there is a whole operation or method that is completely not working, just
throw UnsupportedOperationException.
- See Also:
- Serialized Form
| Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
ErrorException
public ErrorException(java.lang.String arg0)
ErrorException
public ErrorException(java.lang.String arg0,
java.lang.Throwable arg1)
ErrorException
public ErrorException(java.lang.Throwable arg)
getMessage
public java.lang.String getMessage()
- Overrides:
getMessage in class java.lang.Throwable