![JAR search and dependency download from the Maven repository](/logo.png)
me.legrange.service.ComponentException Maven / Gradle / Ivy
package me.legrange.service;
/**
* Thrown by components if they want to signal a critical error.
*
* @author gideon
*/
public final class ComponentException extends ServiceException {
public ComponentException(String message) {
super(message);
}
public ComponentException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy