Package org.apache.turbine.util
Class SystemError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- org.apache.turbine.util.SystemError
-
- All Implemented Interfaces:
Serializable
public class SystemError extends Error
Used for wrapping system errors (exceptions) that may occur in the application.- Version:
- $Id$
- Author:
- Neeme Praks, Quinton McCombs
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SystemError(String message)
Constructor.SystemError(String message, Throwable cause)
Constructor.SystemError(Throwable cause)
Constructor.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
SystemError
public SystemError(Throwable cause)
Constructor.- Parameters:
cause
- A Throwable object
-
SystemError
public SystemError(String message)
Constructor.- Parameters:
message
- Error message
-
SystemError
public SystemError(String message, Throwable cause)
Constructor.- Parameters:
cause
- A Throwable objectmessage
- A String.
-
-