com.github.andyshao.arithmetic.ArithmeticException 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 ArithmeticException extends RuntimeException {
@Serial
private static final long serialVersionUID = 4905425831762516882L;
/**
* without parameter
*/
public ArithmeticException() {
super();
}
/**
* with error message
* @param message the error message
*/
public ArithmeticException(String message) {
super(message);
}
/**
* with error message and previous exception
* @param message error message
* @param exception previous exception
*/
public ArithmeticException(String message , Throwable exception) {
super(message , exception);
}
/**
* with previous exception
* @param exception previous exception
*/
public ArithmeticException(Throwable exception) {
super(exception);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy