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

ars.invoke.request.AccessDeniedException Maven / Gradle / Ivy

The newest version!
package ars.invoke.request;

import ars.invoke.InvokeException;

/**
 * 拒绝访问异常
 *
 * @author wuyongqiang
 */
public class AccessDeniedException extends InvokeException {
    private static final long serialVersionUID = 1L;

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

    @Override
    public Throwable fillInStackTrace() {
        return this;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy