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