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

it.twenfir.antlr.exception.FileException Maven / Gradle / Ivy

There is a newer version: 0.1.3
Show newest version
package it.twenfir.antlr.exception;

/**
 * Exception thrown on file manipulation errors.
 */
public class FileException extends RuntimeException {

    private static final long serialVersionUID = 1L;

	public FileException(String message) {
        super(message);
    }

    public FileException(String message, Throwable cause) {
        super(message, cause);
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy