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

com.blade.exception.NotFoundException Maven / Gradle / Ivy

package com.blade.exception;

/**
 * 404 not found exception
 *
 * @author biezhi
 * @date 2017/9/18
 */
public class NotFoundException extends BladeException {

    public static final int    STATUS = 404;
    private static final String NAME   = "Not Found";

    public NotFoundException() {
        super(STATUS, NAME);
    }

    public NotFoundException(String message) {
        super(STATUS, NAME, message);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy