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

sortpom.exception.FailureException Maven / Gradle / Ivy

There is a newer version: 2.3.1
Show newest version
package sortpom.exception;

/**
 * An exception occurring during the execution of the sort (such as a compilation failure).
 * 
* Throwing this exception should cause a "BUILD FAILURE" message to be displayed. * @author bjorn * @since 2012-12-21 */ public class FailureException extends RuntimeException { public FailureException(String msg, Throwable cause) { super(msg, cause); } public FailureException(String msg) { super(msg); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy