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

es.gob.afirma.envelopers.cms.AOInvalidRecipientException Maven / Gradle / Ivy

The newest version!
/* 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.envelopers.cms;

import es.gob.afirma.core.AOException;

/** Excepción para indicar que se ha intentado abrir un sobre digital con
 * un certificado que no estaba entre sus destinatarios. */
public final class AOInvalidRecipientException extends AOException {

    private static final long serialVersionUID = 2582498859303039013L;

    /** Crea la excepción con un mensaje determinado.
     * @param msg
     *        Mensaje descriptivo de la excepción. */
    AOInvalidRecipientException(final String msg) {
        super(msg);
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy