exception.RenameFailureException 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 is a variable/function rename crashes
*/
public final class RenameFailureException extends RuntimeException {
public RenameFailureException(Exception e) {
super(e);
}
public RenameFailureException(String message) {
super(message);
}
public RenameFailureException() {
super("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy