es.gob.afirma.core.InvalidLibraryException 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.core;
/** Indica que hay una biblioteca inválida en el CLASSPATH o en el BOOTCLASSPATH, a menudo
* porque se ha instalado un JAR inapropiadamente como extensión del JRE.
* @author Tomás García-Merás */
public class InvalidLibraryException extends RuntimeException {
private static final long serialVersionUID = -8418397871871426778L;
/** Crea una nueva instancia de la excepción.
* @param msg Mensaje de la excepción */
public InvalidLibraryException(final String msg) {
super(msg);
}
/** Crea una nueva instancia de la excepción.
* @param msg Mensaje de la excepción
* @param e Excepción original */
public InvalidLibraryException(final String msg, final Throwable e) {
super(msg, e);
}
}