All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.couchbase.client.encryption.errors.CryptoProviderKeySizeException Maven / Gradle / Ivy

Go to download

Contains cryptographic algorithms and key store providers to be used with the SDK.

There is a newer version: 2.0.1
Show newest version
/*
 * Copyright (c) 2018 Couchbase, Inc.
 *
 * Use of this software is subject to the Couchbase Inc. Enterprise Subscription License Agreement
 * which may be found at https://www.couchbase.com/ESLA-11132015.
 */

package com.couchbase.client.encryption.errors;

/**
 * CryptoProviderKeySizeException is thrown when the supplied key's size
 * does not match the Crypto provider's expected key size
 *
 * @author Subhashni Balakrishnan
 * @since 1.0.0
 */
public class CryptoProviderKeySizeException extends Exception {

    public CryptoProviderKeySizeException() {
        super();
    }

    public CryptoProviderKeySizeException(String message) {
        super(message);
    }

    public CryptoProviderKeySizeException(String message, Throwable cause) {
        super(message, cause);
    }

    public CryptoProviderKeySizeException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy