com.github.azbh111.utils.java.exception.InvalidArgumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.exception;
/**
*
* @author pyz
* @date 2018/12/24 5:28 PM
*/
public class InvalidArgumentException extends RuntimeException{
private static final long serialVersionUID = 5849989453524851521L;
public InvalidArgumentException() {
}
public InvalidArgumentException(String message) {
super(message);
}
public InvalidArgumentException(String message, Throwable cause) {
super(message, cause);
}
public InvalidArgumentException(Throwable cause) {
super(cause);
}
public InvalidArgumentException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}