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

me.legrange.service.ServiceException Maven / Gradle / Ivy

The newest version!
package me.legrange.service;

/**
 *
 * @author gideon
 */
public class ServiceException extends Exception {

    public ServiceException(String message) {
        super(message);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy