com.nimbusds.common.id.InvalidIdentifierException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common Show documentation
Show all versions of common Show documentation
Common Connect2id software classes
package com.nimbusds.common.id;
/**
* Invalid identifier exception.
*/
public class InvalidIdentifierException extends Exception {
/**
* Creates a new invalid identifier exception.
*
* @param message The message.
*/
InvalidIdentifierException(final String message) {
super(message);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy