Class JaloSystemException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
AutomatedWorkflowActionException, CannotDecodePasswordException, ConnectionLostException, EJBInternalException, ExtensionNotFoundException, FlexibleSearchException, HMCSystemException, Item.JaloCachedComputationException, ItemCloneCreator.CannotCloneException, JaloInternalException, JaloInvalidParameterException, JaloItemNotFoundException, JaloNotYetCalculatedException, JaloObjectNoLongerValidException, JaloSystemNotInitializedException, MaxDOPWrongValueException, PasswordEncoderNotFoundException, PromotionException, RelationQueryException, RuntimeSQLException, SessionClosedException, TransformerException, WorkflowActionDecideException, WorkflowTerminatedException

public class JaloSystemException extends RuntimeException
Superclass of all system exceptions.
All exceptions that inherits from JaloSystemException are Runtime exceptions and must not be caught.
See Also:
  • Constructor Details

    • JaloSystemException

      public JaloSystemException(Throwable nested, String message, int errorCode)
      Creates a new system exception.
      Parameters:
      nested - the nested throwable
      message - the error message
      errorCode - the related error code
    • JaloSystemException

      public JaloSystemException(String message, int errorCode)
      Creates a new system exception.
      Parameters:
      message - the error message
      errorCode - the related error code
    • JaloSystemException

      public JaloSystemException(Throwable nested, int errorCode)
      Creates a new system exception with a nested exception. The new exception's message will be the same as that of the nested exception.
      Parameters:
      nested - the exception that caused this exception
      errorCode - a unique exception code
    • JaloSystemException

      public JaloSystemException(Throwable nested)
      Creates a new system exception.
      Parameters:
      nested - the exception that caused this exception
    • JaloSystemException

      public JaloSystemException(String message)
      Creates a new system exception.
      Parameters:
      message - the error message
  • Method Details