il.ac.bgu.cs.bp.bpjs.exceptions.BPjsRuntimeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of BPjs Show documentation
Show all versions of BPjs Show documentation
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);
}
}