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

com.nimbusds.jose.KeySourceException Maven / Gradle / Ivy

Go to download

Java library for Javascript Object Signing and Encryption (JOSE) and JSON Web Tokens (JWT)

There is a newer version: 10.0.1
Show newest version
package com.nimbusds.jose;


/**
 * Key source exception.
 *
 * @author Vladimir Dzhuvinov
 * @version 2016-06-21
 */
public class KeySourceException extends JOSEException {
	

	/**
	 * Creates a new key source exception.
	 *
	 * @param message The message.
	 */
	public KeySourceException(final String message) {
		super(message);
	}


	/**
	 * Creates a new key source exception.
	 *
	 * @param message The message.
	 * @param cause   The cause.
	 */
	public KeySourceException(final String message, final Throwable cause) {
		super(message, cause);
	}
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy