All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.andyshao.arithmetic.ArithmeticException Maven / Gradle / Ivy

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