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

cc.shacocloud.mirage.restful.exception.ResourceNotFoundException Maven / Gradle / Ivy

package cc.shacocloud.mirage.restful.exception;

/**
 * 资源不存在异常
 *
 * @author 思追(shaco)
 */
public class ResourceNotFoundException extends RuntimeException {
    
    public ResourceNotFoundException() {
    }
    
    public ResourceNotFoundException(String message) {
        super(message);
    }
    
    public ResourceNotFoundException(String message, Throwable cause) {
        super(message, cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy