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

com.github.life.lab.leisure.common.exception.ResourceNotFoundException Maven / Gradle / Ivy

There is a newer version: 0.0.12.RELEASE
Show newest version
package com.github.life.lab.leisure.common.exception;

/**
 * ResourceNotFoundException
 *
 * @author weichao.li ([email protected])
 * @date 2018/9/11
 */
public class ResourceNotFoundException extends ExtensionException {

    private static final Long CODE = 404L;


    public ResourceNotFoundException(String message) {
        super(HttpStatus.NOT_FOUND.value(), CODE, message, null, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy