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

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(){}
    
    public BPjsException( String message ) {
        super(message);
    }
    
    public BPjsException( String message, Throwable cause ) {
        super( message, cause );
    }
	
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy