com.virgilsecurity.secureenclave.exceptions.MethodNotAllowedException 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 com.virgilsecurity.sdk.crypto.exceptions.CryptoException;
public class MethodNotAllowedException extends CryptoException {
public MethodNotAllowedException() {
}
public MethodNotAllowedException(String message) {
super(message);
}
}