001package com.nimbusds.jose;
002
003
004/**
005 * Key exception.
006 *
007 * @author Vladimir Dzhuvinov
008 * @version 2015-06-29
009 */
010public class KeyException extends JOSEException {
011
012
013        /**
014         * Creates a new key exception with the specified message.
015         *
016         * @param message The exception message.
017         */
018        public KeyException(final String message) {
019
020                super(message);
021        }
022}