![JAR search and dependency download from the Maven repository](/logo.png)
il.ac.bgu.cs.bp.bpjs.exceptions.BPjsException 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.
package il.ac.bgu.cs.bp.bpjs.exceptions;
/**
* Base class for exceptions thrown from BPjs code.
* @author michael
*/
public abstract class BPjsException extends RuntimeException {
public BPjsException( String message ) {
super(message);
}
public BPjsException( String message, Throwable cause ) {
super( message, cause );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy