package com.app.mvc.exception; /** * Created by jimin on 15/11/7. */ public class NotFoundException extends RuntimeException { public NotFoundException() { super(); } public NotFoundException(String message) { super(message); } public NotFoundException(String message, Throwable cause) { super(message, cause); } public NotFoundException(Throwable cause) { super(cause); } protected NotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } }