Class OsidException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
OperationalException, UserException

public class OsidException extends Exception
See Also:
  • Constructor Details

    • OsidException

      public OsidException(String msg)
      Constructs a OsidException with the specified detail message. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
    • OsidException

      public OsidException(String msg, Throwable t)
      Constructs a OsidException with the specified detail message and cause. The error message string msg can later be retrieved by the getMessage() method of Throwable.
      Parameters:
      msg - the error message
      t - the cause of the exception
    • OsidException

      public OsidException(Throwable t)
      Constructs a OsidException with the specified cause and a detail message of cause.toString() which typically contains the class and detail message of cause.
      Parameters:
      t - the cause of the exception