org.voovan.http.server.exception.RequestTooLarge Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of voovan-web Show documentation
Show all versions of voovan-web Show documentation
Voovan is a java framwork and it not depends on any third-party framework.
package org.voovan.http.server.exception;
import java.io.IOException;
/**
* 类文字命名
*
* @author: helyho
* Voovan Framework.
* WebSite: https://github.com/helyho/Voovan
* Licence: Apache v2 License
*/
public class RequestTooLarge extends IOException {
public RequestTooLarge(String description){
super(description);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy