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

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

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

public class AuthenticationException extends RuntimeException {
	private static final long serialVersionUID = 1L;
	
	public AuthenticationException(String message, Throwable cause) {
        super(message, cause);
    }

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy