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

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