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

org.projecthusky.xua.exceptions.BuildException Maven / Gradle / Ivy

/*
 * This code is made available under the terms of the Eclipse Public License v1.0 
 * in the github project https://github.com/project-husky/husky there you also 
 * find a list of the contributors and the license information.
 * 
 * This project has been developed further and modified by the joined working group Husky 
 * on the basis of the eHealth Connector opensource project from June 28, 2021, 
 * whereas medshare GmbH is the initial and main contributor/author of the eHealth Connector.
 *
 */
package org.projecthusky.xua.exceptions;

/**
 * 
 * 
Class implementing the BuildException.
*
Klasse implemetiert die BuildException.
*
*
* */ public class BuildException extends Exception { /** Field referencing the serialVersionUID */ private static final long serialVersionUID = -4015345681495951592L; /** * * *
Default constructor to instanciate the object.
*
Default Konstruktor für die Instanziierung des Objekts.
*
*
* * @param clazz *
the class wanted to be created
*
die Klasse die erstellt werden sollte
*
*
* @param cause *
the cause to be set
*
der Grund der gesetzt werden soll
*
*
* */ public BuildException(Class clazz, Throwable cause) { super("Error createing the class " + clazz.getName(), cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy