ee.bitweb.core.exception.InvalidArgumentException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-core Show documentation
Show all versions of spring-core Show documentation
Bitweb Spring Boot Java Core Library
The newest version!
package ee.bitweb.core.exception;
public class InvalidArgumentException extends RuntimeException {
public InvalidArgumentException(String message) {
super(message);
}
public InvalidArgumentException(String message, Throwable cause) {
super(message, cause);
}
}