package br.com.elotech.base.exception;

public class CryptoException extends RuntimeException {

    /**
     *
     */
    private static final long serialVersionUID = -5239472557049757455L;

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

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

