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

io.github.firefang.power.exception.BadRequestException Maven / Gradle / Ivy

There is a newer version: 0.0.6
Show newest version
package io.github.firefang.power.exception;

/**
 * 非法请求异常,当请求不合法(例如参数错误)时抛出
 * 
 * @author xinufo
 *
 */
public class BadRequestException extends RuntimeException {
    private static final long serialVersionUID = 4870310879204137903L;

    public BadRequestException(String message, Throwable cause) {
        super(message, cause);
    }

    public BadRequestException(String message) {
        super(message);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy