com.github.andyshao.data.structure.TreeChildNodeNotEmptyException 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 12, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class TreeChildNodeNotEmptyException extends TreeOperationException {
@Serial
private static final long serialVersionUID = -3582916238481687068L;
/**
* No arg construction
*/
public TreeChildNodeNotEmptyException() {
super();
}
/**
* With error message
* @param errorMsg error message
*/
public TreeChildNodeNotEmptyException(String errorMsg) {
super(errorMsg);
}
/**
* With error message and previous exception
* @param errorMsg error message
* @param cause previous exception
*/
public TreeChildNodeNotEmptyException(String errorMsg , Throwable cause) {
super(errorMsg , cause);
}
/**
* With previous exception
* @param cause previous exception
*/
public TreeChildNodeNotEmptyException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy