com.github.andyshao.data.structure.DataStructureException 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 DataStructureException extends RuntimeException {
@Serial
private static final long serialVersionUID = 5831612224020640233L;
/**
* No arg construction
*/
public DataStructureException() {
super();
}
/**
* With error message
* @param errorMsg error message
*/
public DataStructureException(String errorMsg) {
super(errorMsg);
}
/**
* With error message and exception
* @param errorMsg error message
* @param cause previous exception
*/
public DataStructureException(String errorMsg , Throwable cause) {
super(errorMsg , cause);
}
/**
* With previous exception
* @param cause previous exception
*/
public DataStructureException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy