com.github.houbb.number.exception.NumberException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of number Show documentation
Show all versions of number Show documentation
The number tool for java.
package com.github.houbb.number.exception;
/**
* @author binbin.hou
* @since 0.0.1
*/
public class NumberException extends RuntimeException {
public NumberException() {
}
public NumberException(String message) {
super(message);
}
public NumberException(String message, Throwable cause) {
super(message, cause);
}
public NumberException(Throwable cause) {
super(cause);
}
public NumberException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy