org.projecthusky.xua.exceptions.ClientSendException 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 ClientSendException.
* Klasse welche die ClientSendException implementiert.
*
*
*
*/
public class ClientSendException extends Exception {
/**
* Field referencing the serialVersionUID
* Feld mit der serialVersionUID reference
*
*
*
*/
private static final long serialVersionUID = -7999422268809408320L;
public ClientSendException(String message) {
super(message);
}
/**
*
* Default constructor to instanciate the object.
* Default Konstruktor für die Instanziierung des Objekts.
*
*
*
* @param message
* the textual descriptin of the exception.
* Die textuelle Beschreibung des Fehlers.
*
*
*
* @param cause
* The reason of the exception.
* Der Grund des Fehlers.
*
*
*
*/
public ClientSendException(String message, Throwable cause) {
super(message, cause);
}
/**
*
* Default constructor to instanciate the object.
* Default Konstruktor für die Instanziierung des Objekts.
*
*
*
* @param cause
* The reason of the exception.
* Der Grund des Fehlers.
*
*
*
*/
public ClientSendException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy