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

com.cybermkd.common.util.crypto.CryptoException Maven / Gradle / Ivy

package com.cybermkd.common.util.crypto;

/**
 * JsonException
 */
public class CryptoException extends RuntimeException {

    public CryptoException() {
    }

    public CryptoException(String message) {
        super(message);
    }

    public CryptoException(Throwable cause) {
        super(cause);
    }

    public CryptoException(String message, Throwable cause) {
        super(message, cause);
    }
}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy