io.github.ashwithpoojary98.exceptions.ParameterException Maven / Gradle / Ivy
The newest version!
package io.github.ashwithpoojary98.exceptions;
public class ParameterException extends RuntimeException{
public ParameterException() {
super();
}
public ParameterException(String message) {
super(message);
}
}