it.twenfir.antlr.exception.FileException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of twenfir-antlr Show documentation
Show all versions of twenfir-antlr Show documentation
Add-ons for the ANTLR parser generator
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);
}
}