exception.WritingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package exception;
/**
* Thrown if writing to file crashes
*/
public final class WritingException extends RuntimeException {
public WritingException(Exception e) {
super(e);
}
public WritingException(String message) {
super(message);
}
public WritingException() {
super("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy