Class CTException

All Implemented Interfaces:
Serializable

public class CTException extends Exception
Exception handling class for the c-treeDB for Java (JTDB) layer. It is used to throw an error message when an exception occurs.
See Also:
  • Constructor Details

    • CTException

      public CTException(int ErrorCode)
      Constructor for the CTException class.
      Parameters:
      ErrorCode - Error code to assign to the exception. Expected values are CTDBRET.
      See Also:
    • CTException

      public CTException(int ErrorCode, String ErrorMsg)
      Constructor for the CTException class.
      Parameters:
      ErrorCode - Error code to assign to the exception. Expected values are CTDBRET.
      ErrorMsg - Error message to be assigned to the exception.
      See Also:
  • Method Details