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

io.takari.bpm.api.ExecutionException Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.takari.bpm.api;

/**
 * Generic execution exception.
 */
public class ExecutionException extends Exception {
	
	private static final long serialVersionUID = 1L;

    public ExecutionException(String message) {
        super(message);
    }
    
    public ExecutionException(String format, Object ... args) {
        super(String.format(format, args));
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy