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

Go to download

Provides runtime and analysis for behavioral programs written in JavaScript. It can run stand-alone (from the commmandline) or be embedded in larger JVM-based systems.

The newest version!
package il.ac.bgu.cs.bp.bpjs.exceptions;

/**
 * An exception thrown when a code "makes no sense", e.g when client code
 * 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