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

ee.bitweb.core.exception.InvalidArgumentException Maven / Gradle / Ivy

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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy