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

cocaine.ServiceException Maven / Gradle / Ivy

There is a newer version: 0.11.1.0
Show newest version
package cocaine;

/**
 * @author Anton Bobukh 
 */
public class ServiceException extends CocaineException {

    private final String serviceName;

    public ServiceException(String serviceName, String message) {
        super(serviceName + " - " + message);
        this.serviceName = serviceName;
    }

    public String getServiceName() {
        return serviceName;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy