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

de.a9d3.testing.executer.exception.CheckFailedException Maven / Gradle / Ivy

Go to download

A project which helps you testing your java classes for basic things like getter==setter, hashCode and equals methods and other programming schemas. Also provides a convenient way to instantiate classes with seeded random data.

The newest version!
package de.a9d3.testing.executer.exception;

import de.a9d3.testing.checks.CheckInterface;

public class CheckFailedException extends RuntimeException {
    public CheckFailedException(CheckInterface check, Exception inner) {
        super("check " + check.toString() + " failed. See inner exception.", inner);
    }

    public CheckFailedException(CheckInterface check) {
        super("check " + check.toString() + " failed.");
    }

    public CheckFailedException(String reason) {
        super(reason);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy