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

com.wix.restaurants.authentication.exceptions.InvalidRequestException Maven / Gradle / Ivy

There is a newer version: 1.12.0
Show newest version
package com.wix.restaurants.authentication.exceptions;

public class InvalidRequestException  extends AuthenticationException {
    private static final long serialVersionUID = 1L;

    public InvalidRequestException(String message, Throwable cause) {
        super(message, cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy