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

org.eurekaclinical.i2b2.client.xml.I2b2XmlException Maven / Gradle / Ivy

package org.eurekaclinical.i2b2.client.xml;

/*
 * #%L
 * i2b2 Export Service
 * %%
 * Copyright (C) 2013 Emory University
 * %%
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * 
 *      http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * #L%
 */

import org.eurekaclinical.i2b2.client.I2b2Exception;

/**
 * An exception for errors that occur when dealing with i2b2 XML messaging.
 *
 * @author Michel Mansour
 * @since 1.0
 */
public class I2b2XmlException extends I2b2Exception {

	private static final long serialVersionUID = 1L;

	/**
	 * Default no-arg constructor
	 */
	public I2b2XmlException() {
		super();
	}

	/**
	 * Creates an exception with the given message and cause to wrap.
	 *
	 * @param message the exception's message
	 * @param cause the {@link Throwable} cause to wrap
	 */
	public I2b2XmlException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * Creates an exception with the given message.
	 *
	 * @param message the exception's message
	 */
	public I2b2XmlException(String message) {
		super(message);
	}

	/**
	 * Creates an exception wrapping the given cause.
	 *
	 * @param cause the {@link Throwable} cause to wrap
	 */
	public I2b2XmlException(Throwable cause) {
		super(cause);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy