001package com.nimbusds.jose;
002
003
004/**
005 * Remote key source exception.
006 *
007 * @author Vladimir Dzhuvinov
008 * @version 2016-06-21
009 */
010public class RemoteKeySourceException extends KeySourceException {
011        
012
013        /**
014         * Creates a new remote key source exception.
015         *
016         * @param message The message.
017         * @param cause   The cause.
018         */
019        public RemoteKeySourceException(final String message, final Throwable cause) {
020                super(message, cause);
021        }
022}