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

com.github.codeinghelper.exception.http.ForbiddenException Maven / Gradle / Ivy

There is a newer version: 1.0.2
Show newest version
/**
 * @author zeze.li
 * @version 1.0.0
 * @ClassName HttpException.java
 * @Description TODO
 * @createTime 2020年08月01日 18:38:00
 */
package com.github.codeinghelper.exception.http;

public class ForbiddenException extends HttpException {
    public ForbiddenException(int code) {
        this.code = code;

        this.httpStatusCode = 403;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy