com.wix.restaurants.authentication.exceptions.InvalidDataException 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 InvalidDataException extends AuthenticationException {
private static final long serialVersionUID = 1L;
public InvalidDataException(String message, Throwable cause) {
super(message, cause);
}
public InvalidDataException(String message) {
super(message);
}
}