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

com.sequencing.oauth.exception.BasicAuthenticationFailedException Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package com.sequencing.oauth.exception;

public class BasicAuthenticationFailedException extends Exception
{
	private static final long serialVersionUID = 4607326018356301058L;

	public BasicAuthenticationFailedException() {
	}

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

	public BasicAuthenticationFailedException(Throwable cause) {
		super(cause);
	}

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

	public BasicAuthenticationFailedException(String message, Throwable cause, boolean enableSuppression,
			boolean writableStackTrace) {
		super(message, cause, enableSuppression, writableStackTrace);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy