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

org.voovan.http.server.exception.RequestTooLarge Maven / Gradle / Ivy

package org.voovan.http.server.exception;

import java.io.IOException;

/**
 * Http request 请求超长异常
 *
 * @author: helyho
 * Voovan Framework.
 * WebSite: https://github.com/helyho/Voovan
 * Licence: Apache v2 License
 */
public class RequestTooLarge extends RuntimeException {
    public RequestTooLarge(String description){
        super(description);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy