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

il.ac.bgu.cs.bp.bpjs.exceptions.BPjsException 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.

There is a newer version: 0.12.3
Show newest version
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