/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.example.exception; /** * * @author tuoi-cm */ public class ResourceNotFoundException extends RuntimeException { private static final long serialVersionUID = 1L; public ResourceNotFoundException() { this("Resource not found!"); } public ResourceNotFoundException(String message) { this(message, null); } public ResourceNotFoundException(String message, Throwable cause) { super(message, cause); } }