com.suppercoder.java.jtree.TreeInitException Maven / Gradle / Ivy
The newest version!
package com.suppercoder.java.jtree;
/**
* tree init exception
*
* @author chenxing
**/
public class TreeInitException extends RuntimeException {
public TreeInitException() {
}
public TreeInitException(String message) {
super(message);
}
public TreeInitException(String message, Throwable cause) {
super(message, cause);
}
public TreeInitException(Throwable cause) {
super(cause);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy