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

io.lsn.spring.utilities.exception.NotFoundException Maven / Gradle / Ivy

package io.lsn.spring.utilities.exception;

/**
 * @author Patryk Szlagowski
 */
public class NotFoundException extends Exception {

    public NotFoundException() {
        super();
    }

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

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

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

    protected NotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
        super(message, cause, enableSuppression, writableStackTrace);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy