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

paa.coder.noodleCriteriaBuilder.exceptions.SelectionIsEmpty Maven / Gradle / Ivy

package paa.coder.noodleCriteriaBuilder.exceptions;

public class SelectionIsEmpty extends NoodleException{

    public SelectionIsEmpty(){
    }

    public SelectionIsEmpty(String message){
        super(message);
    }

    public SelectionIsEmpty(String message, Throwable cause){
        super(message, cause);
    }

    public SelectionIsEmpty(Throwable cause){
        super(cause);
    }

    public SelectionIsEmpty(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace){
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy