All Downloads are FREE. Search and download functionalities are using the official Maven repository.

info.javaspec.spec.TestSetupFailed Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package info.javaspec.spec;

final class TestSetupFailed extends RuntimeException {
  private static final long serialVersionUID = 1L;

  public static TestSetupFailed forClass(Class context, Throwable cause) {
    return new TestSetupFailed(
      String.format("Failed to create test context %s", context.getName()),
      cause);
  }

  private TestSetupFailed(String message, Throwable cause) {
    super(message, cause);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy