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