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

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

There is a newer version: 2.5.2
Show newest version
/*
 * 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 DeserializeException.
*
Klasse implemetiert die DeserializeException.
*
*
* */ public class LibrariesInitializationException extends Exception { private static final long serialVersionUID = -558241448346503409L; /** * * *
Default constructor to instanciate the object.
*
Default Konstruktor für die instanziierung des objects.
*
*
* * @param message *
The message of the exception.
*
Die Nachricht des Fehlers.
*
*
* */ public LibrariesInitializationException(String message) { super(message); } /** * * *
Default constructor to instanciate the object.
*
Default Konstruktor für die instanziierung des objects.
*
*
* * @param message *
The message of the exception.
*
Die Nachricht des Fehlers.
*
*
* @param cause *
The cause of the exception.
*
Der Grund des Fehlers.
*
*
* */ public LibrariesInitializationException(String message, Throwable cause) { super(message, cause); } /** * * *
Default constructor to instanciate the object.
*
Default Konstruktor für die instanziierung des objects.
*
*
* * @param cause *
The cause of the exception.
*
Der Grund des Fehlers.
*
*
* */ public LibrariesInitializationException(Throwable cause) { super(cause); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy