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

io.machinecode.then.api.FailureException Maven / Gradle / Ivy

There is a newer version: 0.3.0
Show newest version
package io.machinecode.then.api;

/**
 * @author Brent Douglas
 * @since 1.0
 */
public class FailureException extends Exception {

    final Object failure;

    public FailureException(final String message, final Object failure) {
        super(message);
        this.failure = failure;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy