com.acsinet_solutions.util.exception
Class SystemException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by com.acsinet_solutions.util.exception.SystemException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AccessException, ValidationRuntimeException, VersionMismatchException

public class SystemException
extends java.lang.RuntimeException

A generic exception representing system related errors. Very used along the framework.

Author:
Santiago Arriaga
See Also:
Serialized Form

Constructor Summary
SystemException()
          Constructor for SystemException.
SystemException(java.lang.String message)
          Constructor for SystemException.
SystemException(java.lang.String message, java.lang.Throwable nestedException)
          Constructor for SystemException.
SystemException(java.lang.Throwable nestedException)
          Constructor for SystemException.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

SystemException

public SystemException()
Constructor for SystemException.


SystemException

public SystemException(java.lang.String message)
Constructor for SystemException.


SystemException

public SystemException(java.lang.Throwable nestedException)
Constructor for SystemException.


SystemException

public SystemException(java.lang.String message,
                       java.lang.Throwable nestedException)
Constructor for SystemException.