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 SummaryConstructors Constructor Description SystemError(String message)Constructor.SystemError(String message, Throwable cause)Constructor.SystemError(Throwable cause)Constructor.
 - 
Method Summary- 
Methods inherited from class java.lang.ThrowableaddSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
- 
 
- 
- 
- 
Constructor Detail- 
SystemErrorpublic SystemError(Throwable cause) Constructor.- Parameters:
- cause- A Throwable object
 
 - 
SystemErrorpublic SystemError(String message) Constructor.- Parameters:
- message- Error message
 
 - 
SystemErrorpublic SystemError(String message, Throwable cause) Constructor.- Parameters:
- cause- A Throwable object
- message- A String.
 
 
- 
 
-