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

com.insightfullogic.lambdabehave.SpecificationDeclarationException Maven / Gradle / Ivy

There is a newer version: 0.4
Show newest version
package com.insightfullogic.lambdabehave;

/**
 * Exception that gets thrown when there is an error declaring specifications. You
 * shouldn't need to worry about is exception unless you are directly
 * interacting with the runner API and not just running via maven/your IDE.
 *
 * @see com.insightfullogic.lambdabehave.BehaveRunner
 */
public class SpecificationDeclarationException extends IllegalArgumentException {

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

    public SpecificationDeclarationException(final String message) {
        super(message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy