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

il.ac.bgu.cs.bp.bpjs.exceptions.BPjsRuntimeException Maven / Gradle / Ivy

package il.ac.bgu.cs.bp.bpjs.exceptions;

/**
 * An exception thrown when a code "makes no sense", e.g. when client code has
 * tries to make an invalid event set.
 * 
 * @author michael
 */
public class BPjsRuntimeException extends BPjsException {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy