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

es.gob.afirma.signers.pades.BadPdfPasswordException Maven / Gradle / Ivy

/* 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.signers.pades;

import es.gob.afirma.core.AOException;

/** Indica que el PDF no ha podido abrirse o firmarse por estar protegido por una contraseña distinta
 * a la proporcionada (si se proporcionó alguna).
 * @author Tomás García-Merás */
public final class BadPdfPasswordException extends AOException {

	private static final long serialVersionUID = 8754705547567762401L;

	/** Crea una excepción que indica que el PDF no ha podido abrirse o firmarse por estar protegido por una contraseña.
	 * @param e Excepción de origen */
	BadPdfPasswordException(final Throwable e) {
		super("La contrasena proporcionada no es valida para el PDF actual o no se proporciono ninguna contrasena", e); //$NON-NLS-1$
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy