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

com.kloudtek.kryptotek.keystore.CredentialInvalidException Maven / Gradle / Ivy

Go to download

Kryptotek provides an easy to use abstraction layer for cryptographic functions

The newest version!
/*
 * Copyright (c) 2014 Kloudtek Ltd
 */

package com.kloudtek.kryptotek.keystore;

/**
 * Created by yannick on 22/11/2014.
 */
public class CredentialInvalidException extends Exception {
    public CredentialInvalidException() {
    }

    public CredentialInvalidException(String detailMessage) {
        super(detailMessage);
    }

    public CredentialInvalidException(String detailMessage, Throwable throwable) {
        super(detailMessage, throwable);
    }

    public CredentialInvalidException(Throwable throwable) {
        super(throwable);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy