es.gob.afirma.cert.signvalidation.NoMatchDataException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-crypto-validation Show documentation
Show all versions of afirma-crypto-validation Show documentation
Modulo para la validacion del core de firma de firmas ASN.1 y XML
/* 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.cert.signvalidation;
/**
* Indica cuando los datos contenidos en una firma no coincide con los datos firmados.
* @author Carlos Gamuci
*/
class NoMatchDataException extends Exception {
/** Serial ID. */
private static final long serialVersionUID = 1L;
/**
* Indica que los datos contenidos en la firma no coinciden con los datos firmados.
*/
public NoMatchDataException() {
super();
}
/**
* Indica que los datos contenidos en la firma no coinciden con los datos firmados.
* @param message Mensaje que detalle el error.
*/
NoMatchDataException(final String message) {
super(message);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy