Class CometException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CometCScriptException, ConfigNotFoundException, ContainerEmptyException, OperationUnsupportedException, SessionInvalidOrExpiredException, UnresolvedDependenciesException

public class CometException extends PubServerException
Base class for Exceptions thrown in the DatabasePublishing context
See Also:
  • Field Details

    • ERROR_CONTEXT

      public static final String ERROR_CONTEXT
      The constant ERROR_CONTEXT "com.priint.pubserver.comet.config.CometConfiguration".
      See Also:
    • GENERIC_ERROR

      public static final int GENERIC_ERROR
      The constant GENERIC_ERROR "-1".
      See Also:
  • Constructor Details

    • CometException

      public CometException()
      Instantiates a new Comet exception.
    • CometException

      public CometException(int errorCode, Object caller, String errorMessage)
      Instantiates a new Comet exception.
      Parameters:
      errorCode - the error code
      caller - the caller
      errorMessage - the error message
    • CometException

      public CometException(Object caller, String errorMessage)
      Instantiates a new Comet exception.
      Parameters:
      caller - the caller
      errorMessage - the error message
    • CometException

      public CometException(int errorCode, String serverModule, String errorMessage)
      Instantiates a new Comet exception.
      Parameters:
      errorCode - the error code
      serverModule - the server module
      errorMessage - the error message
    • CometException

      public CometException(int errorCode, Object caller, Throwable cause)
      Instantiates a new Comet exception.
      Parameters:
      errorCode - the error code
      caller - the caller
      cause - the cause
    • CometException

      public CometException(Object caller, Throwable cause)
      Instantiates a new Comet exception.
      Parameters:
      caller - the caller
      cause - the cause
    • CometException

      public CometException(Object caller, String message, Throwable cause)
      Instantiates a new Comet exception.
      Parameters:
      caller - the caller
      message - the message
      cause - the cause
    • CometException

      public CometException(Throwable cause)
      Instantiates a new Comet exception.
      Parameters:
      cause - the cause
  • Method Details