001package co.codewizards.cloudstore.rest.client.ssl;
002
003/**
004 * Exception indicating that {@link DynamicX509TrustManagerCallback} was consulted and explicitly denied
005 * trust.
006 * <p>
007 * This exception is used to suppress multiple retries which would trigger the callback to be consulted
008 * multiple times.
009 * @author Marco หงุ่ยตระกูล-Schulze - marco at codewizards dot co
010 */
011public class CallbackDeniedTrustException extends RuntimeException {
012
013        private static final long serialVersionUID = 1L;
014
015        public CallbackDeniedTrustException(final Throwable cause) {
016                super(cause);
017        }
018
019}