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

com.bol.crypt.CryptOperationException Maven / Gradle / Ivy

The newest version!
package com.bol.crypt;

/**
 * Wraps different JCA exceptions under a single umbrella.
 */
public class CryptOperationException extends RuntimeException {
    public CryptOperationException(String s, Throwable e) {
        super(s, e);
    }

    public CryptOperationException(String s) {
        super(s);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy