001package com.nimbusds.jose.jwk.source;
002
003/**
004 * JWK set retrieval exception, due to a network issue or the remote server
005 * being unavailable.
006 *
007 * @author Thomas Rørvik Skjølberg
008 * @version 2022-04-09
009 */
010public class JWKSetRetrievalException extends JWKSetUnavailableException {
011
012        private static final long serialVersionUID = 1L;
013        
014        
015        /**
016         * Creates a new JWK set retrieval exception.
017         *
018         * @param message The message, {@code null} if not specified.
019         * @param cause   The cause, {@code null} if not specified.
020         */
021        public JWKSetRetrievalException(final String message, final Throwable cause) {
022                super(message, cause);
023        }
024}