com.wix.restaurants.authentication.exceptions.NoPermissionException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wix-restaurants-authentication-api Show documentation
Show all versions of wix-restaurants-authentication-api Show documentation
Wix Restaurants Authentication API
package com.wix.restaurants.authentication.exceptions;
public class NoPermissionException extends AuthenticationException {
private static final long serialVersionUID = 1L;
public NoPermissionException(String message, Throwable cause) {
super(message, cause);
}
public NoPermissionException(String message) {
super(message);
}
}