Class CheckerException

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
com.github.ngoanh2n.RuntimeError
com.github.ngoanh2n.wdc.CheckerException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
CheckerException.ClosedDriver, CheckerException.ClosedDriverProvided, CheckerException.NoneDriver, CheckerException.NullDriverPassed, CheckerException.NullDriverProvided

public class CheckerException extends com.github.ngoanh2n.RuntimeError
Runtime exception for WebDriverChecker.

Repository:
Since:
2020
See Also:
  • Constructor Details

    • CheckerException

      public CheckerException(String message)
      Construct a new CheckerException with the specified detail message.
      Parameters:
      message - The detail message, is saved for later retrieval by the Throwable.getMessage() method.
    • CheckerException

      public CheckerException(Throwable cause)
      Construct a new CheckerException with the specified cause and a detail message.
      Parameters:
      cause - The cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown).
    • CheckerException

      public CheckerException(String message, Throwable cause)
      Construct a new CheckerException with the specified detail message and cause.
      Parameters:
      message - The detail message (which is saved for later retrieval by the Throwable.getMessage() method).
      cause - the cause (which is saved for later retrieval by the Throwable.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)