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

com.tngtech.jgiven.exception.JGivenExecutionException Maven / Gradle / Ivy

There is a newer version: 1.3.1
Show newest version
package com.tngtech.jgiven.exception;

/**
 * This exception is thrown when JGiven tried to execute a used defined method, but the method could not be executed for some reason.
 */
public class JGivenExecutionException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    public JGivenExecutionException( String message, Throwable cause ) {
        super( message, cause );
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy