Class BadLogicException

All Implemented Interfaces:
Serializable

public class BadLogicException extends ProviderContractException
Implementation has incorrect behavior with respect to profile or other interoperability methods.
See Also:
  • Constructor Details

    • BadLogicException

      public BadLogicException(String msg)
      Constructs a BadLogicException 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
    • BadLogicException

      public BadLogicException(String msg, Throwable t)
      Constructs a BadLogicException 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
    • BadLogicException

      public BadLogicException(Throwable t)
      Constructs a BadLogicException 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