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

org.cesecore.keys.validation.KeyValidatorDoesntExistsException 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                  *
 *  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.keys.validation;

import javax.xml.ws.WebFault;

import org.cesecore.CesecoreException;

/**
 * An exception thrown when someone tries to access a key validator that doesn't exits.
 *
 * @version $Id: KeyValidatorDoesntExistsException.java 26105 2017-06-30 13:38:32Z anatom $
 */
@WebFault
public class KeyValidatorDoesntExistsException extends CesecoreException {

    private static final long serialVersionUID = 4122021467195662691L;

    /**
     * Creates a new instance.
     */
    public KeyValidatorDoesntExistsException() {
        super( "Key validator does not exist in datastore.");
    }

    /**
     * Creates a new instance with the specified detail message.
     * @param message the detail message.
     */
    public KeyValidatorDoesntExistsException(final String message) {
        super(message);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy