
com.venky.swf.exceptions.UserNotAuthenticatedException 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 UserNotAuthenticatedException extends RuntimeException{
public UserNotAuthenticatedException() {
this("User Not Logged On");
}
public UserNotAuthenticatedException(String message) {
super(message);
}
public UserNotAuthenticatedException(String message, Throwable cause) {
super(message, cause);
}
public UserNotAuthenticatedException(Throwable cause) {
super(cause);
}
public UserNotAuthenticatedException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) {
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy