es.gob.afirma.standalone.configurator.ConfigurationException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-ui-simpleafirma-configurator Show documentation
Show all versions of afirma-ui-simpleafirma-configurator Show documentation
Aplicacion auxiliar de instalacion de AutoFirma
/* Copyright (C) 2011 [Gobierno de Espana]
* This file is part of "Cliente @Firma".
* "Cliente @Firma" is free software; you can redistribute it and/or modify it under the terms of:
* - the GNU General Public License as published by the Free Software Foundation;
* either version 2 of the License, or (at your option) any later version.
* - or The European Software License; either version 1.1 or (at your option) any later version.
* You may contact the copyright holder at: [email protected]
*/
package es.gob.afirma.standalone.configurator;
/** Cuando no se puede generar el certificado.
* Comúnmente por un error de configuración. */
public final class ConfigurationException extends Exception {
/** Serial Id. */
private static final long serialVersionUID = 2072955063471096921L;
/** Error de configuración para la generación del certificado.
* @param msg Descripción del error. */
public ConfigurationException(final String msg) {
super(msg);
}
/** Error de configuración para la generación del certificado.
* @param msg Descripción del error.
* @param cause Motivo que originó el error. */
public ConfigurationException(final String msg, final Throwable cause) {
super(msg, cause);
}
}