001package com.nimbusds.common.id;
002
003
004/**
005 * Invalid identifier exception.
006 */
007public class InvalidIdentifierException extends Exception {
008        
009
010        /**
011         * Creates a new invalid identifier exception.
012         *
013         * @param message The message.
014         */
015        InvalidIdentifierException(final String message) {
016                super(message);
017        }
018}