
com.venky.swf.exceptions.AccessDeniedException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swf-db Show documentation
Show all versions of swf-db Show documentation
Succinct Web Framework - Db
The newest version!
package com.venky.swf.exceptions;
public class AccessDeniedException extends RuntimeException {
/**
*
*/
private static final long serialVersionUID = -6440331015155813184L;
public AccessDeniedException() {
this("Access Denied");
}
public AccessDeniedException(String message) {
super(message);
}
public AccessDeniedException(Throwable cause) {
super(cause);
}
public AccessDeniedException(String message, Throwable cause) {
super(message, cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy