org.projecthusky.xua.exceptions.SoapException 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 SoapException.
* Klasse implemetiert die SoapException.
*
*
*
*/
public class SoapException extends ClientSendException {
private static final long serialVersionUID = 718920336633885906L;
/** the soap exception code */
@SuppressWarnings("unused")
private final String code;
/** the soap exception message */
@SuppressWarnings("unused")
private final String message;
/**
*
*
* Default constructor to instanciate the object.
* Default Konstruktor für die instanziierung des objects.
*
*
*
* @param aCode
* The code of the exception.
* Der Code des Fehlers.
*
*
* @param aMessage
* The message of the exception.
* Die Nachricht des Fehlers.
*
*
*
*/
public SoapException(String aCode, String aMessage) {
super("Code: " + aCode + ", Message: " + aMessage);
code = aCode;
message = aMessage;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy