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

it.uniroma2.art.coda.exception.parserexception.PRParserException Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package it.uniroma2.art.coda.exception.parserexception;

/**
 * This class represent a generic Exception regarding the reading of the Projection
 * Rule File written in PEARL
 * 
 * @author Andrea Turbati
 */
public abstract class PRParserException extends Exception {
    
    private static final long serialVersionUID = -8543980667727905853L;

	public PRParserException() {
        super();
    }
    
    /**
     * @param e
     */
    public PRParserException(Exception e) {
        super(e);
    }
    
    public abstract String getErrorAsString();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy