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

org.mod4j.runtime.exception.ServiceException Maven / Gradle / Ivy

package org.mod4j.runtime.exception;

/**
 * Thrown when during the call of a service method a violation occurred.
 * 
 * @author Ordina initial implementation
 * 
 */
@SuppressWarnings("serial")
public class ServiceException extends RuntimeException {

    /**
     * {@inheritDoc}
     */
    public ServiceException() {
        super();
    }

    /**
     * {@inheritDoc}
     */
    public ServiceException(String message, Throwable cause) {
        super(message, cause);
    }

    /**
     * {@inheritDoc}
     */
    public ServiceException(String message) {
        super(message);
    }

    /**
     * {@inheritDoc}
     */
    public ServiceException(Throwable cause) {
        super(cause);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy