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

com.ulisesbocchio.jasyptspringboot.exception.DecryptionException Maven / Gradle / Ivy

The newest version!
package com.ulisesbocchio.jasyptspringboot.exception;

/**
 * 

DecryptionException class.

* * @author Ulises Bocchio * @version $Id: $Id */ public class DecryptionException extends RuntimeException { private static final long serialVersionUID = 1L; /** *

Constructor for DecryptionException.

* * @param message a {@link java.lang.String} object */ public DecryptionException(final String message) { super(message); } /** *

Constructor for DecryptionException.

* * @param message a {@link java.lang.String} object * @param cause a {@link java.lang.Throwable} object */ public DecryptionException(final String message, final Throwable cause) { super(message, cause); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy