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

org.cesecore.certificates.util.AlgorithmsToolRuntimeException Maven / Gradle / Ivy

/*************************************************************************
 *                                                                       *
 *  CESeCore: CE Security Core                                           *
 *                                                                       *
 *  This software is free software; you can redistribute it and/or       *
 *  modify it under the terms of the GNU Lesser General Public           *
 *  License as published by the Free Software Foundation; either         *
 *  version 2.1 of the License, or any later version.                    *
 *                                                                       *
 *  See terms of license at gnu.org.                                     *
 *                                                                       *
 *************************************************************************/
package org.cesecore.certificates.util;

/**
 * Thrown by methods in @link {@link AlgorithmTools} when an error occurs that
 * can not be handled.
 * @version $Id: AlgorithmsToolRuntimeException.java 22408 2015-12-08 20:19:48Z primelars $
 *
 */
public class AlgorithmsToolRuntimeException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    AlgorithmsToolRuntimeException(final String message) {
        super(message);
    }

    AlgorithmsToolRuntimeException(final String message, final Exception cause) {
        super(message, cause);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy