com.github.andyshao.data.structure.TreeIsEmptyException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.data.structure;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Feb 13, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class TreeIsEmptyException extends TreeOperationException {
@Serial
private static final long serialVersionUID = 7029818648399686287L;
/**
* No arg construction
*/
public TreeIsEmptyException() {
super();
}
/**
* With error message
* @param errorMsg error message
*/
public TreeIsEmptyException(String errorMsg) {
super(errorMsg);
}
/**
* With error message and previous exception
* @param errorMsg error message
* @param cause previous exception
*/
public TreeIsEmptyException(String errorMsg , Throwable cause) {
super(errorMsg , cause);
}
/**
* Previous exception
* @param cause previous exception
*/
public TreeIsEmptyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy