org.voovan.http.server.exception.ResourceNotFound Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-framework Show documentation
Show all versions of voovan-framework Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.http.server.exception;
/**
* 资源不存在异常
* @author helyho
*
*/
public class ResourceNotFound extends Exception {
/**
*
*/
private static final long serialVersionUID = 1L;
public ResourceNotFound(String description){
super(description);
}
}