com.kloudtek.kryptotek.InvalidKeyEncodingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kryptotek-core Show documentation
Show all versions of kryptotek-core Show documentation
Kryptotek provides an easy to use abstraction layer for cryptographic functions
The newest version!
/*
* Copyright (c) 2016 Kloudtek Ltd
*/
package com.kloudtek.kryptotek;
/**
* Created by yannick on 30/12/2014.
*/
public class InvalidKeyEncodingException extends Exception {
private static final long serialVersionUID = -592603548577709630L;
public InvalidKeyEncodingException() {
}
public InvalidKeyEncodingException(EncodedKey.Format format) {
super("Encoding format "+format.name()+" not supported by key");
}
public InvalidKeyEncodingException(String detailMessage) {
super(detailMessage);
}
public InvalidKeyEncodingException(String detailMessage, Throwable throwable) {
super(detailMessage, throwable);
}
public InvalidKeyEncodingException(Throwable throwable) {
super(throwable);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy