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

org.resthub.common.exception.NotFoundException Maven / Gradle / Ivy

Go to download

RESThub core include Embeded datasource, Generic Repository and Generic CRUD services

The newest version!
package org.resthub.common.exception;

/**
 * Exception thrown when not result was found (for example findById with null return value)
 */
public class NotFoundException extends RuntimeException {
    
    public NotFoundException() {
        super();
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy