com.virgilsecurity.secureenclave.exceptions.ASN1Exception Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of secure-enclave Show documentation
Show all versions of secure-enclave Show documentation
Virgil is a stack of security libraries (ECIES with Crypto Agility wrapped in Virgil Cryptogram) and all the necessary infrastructure to enable seamless, end-to-end encryption for any application, platform or device.
Learn about Virgil Crypto Library https://virgilsecurity.com/api-docs/java-android/crypto-library
The newest version!
package com.virgilsecurity.secureenclave.exceptions;
import java.io.IOException;
/**
* Created by teonit on 04.04.17.
*/
public class ASN1Exception extends RuntimeException {
public ASN1Exception(String message) {
super(message);
}
public ASN1Exception(String message, Throwable cause) {
super(message, cause);
}
}