com.github.andyshao.arithmetic.GraphAlgException 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.arithmetic;
import java.io.Serial;
/**
*
* Title:
* Descript:
* Copyright: Copryright(c) Mar 16, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
public class GraphAlgException extends ArithmeticException {
@Serial
private static final long serialVersionUID = 6039554849054230704L;
/**
* No arg construction
*/
public GraphAlgException() {
super();
}
/**
* With error message
* @param message error message
*/
public GraphAlgException(String message) {
super(message);
}
/**
* With error message and previous exception
* @param message error message
* @param exception previous exception
*/
public GraphAlgException(String message , Throwable exception) {
super(message , exception);
}
/**
* With previous exception
* @param exception previous exception
*/
public GraphAlgException(Throwable exception) {
super(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy