Class DriverConfigurationError

java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.thucydides.core.webdriver.DriverConfigurationError
All Implemented Interfaces:
java.io.Serializable

public class DriverConfigurationError
extends java.lang.RuntimeException
Thrown when the test runner tries to use an unsupported WebDriver driver. This is checked when the test runner is first set up, so if it occurs during a test run, something very unexpected has happened.
Author:
johnsmart
See Also:
Serialized Form
  • Constructor Summary

    Constructors
    Constructor Description
    DriverConfigurationError​(java.lang.String message)  
    DriverConfigurationError​(java.lang.String message, java.lang.Throwable cause)
    Give some details about this very rare error.
  • Method Summary

    Methods inherited from class java.lang.Throwable

    addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • DriverConfigurationError

      public DriverConfigurationError​(java.lang.String message)
    • DriverConfigurationError

      public DriverConfigurationError​(java.lang.String message, java.lang.Throwable cause)
      Give some details about this very rare error.