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

org.openhealthtools.ihe.utils.IHEException Maven / Gradle / Ivy

There is a newer version: 3.6-20170926
Show newest version
/*******************************************************************************
 * Copyright (c) 2008 IBM Corporation and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/

package org.openhealthtools.ihe.utils;


public class IHEException extends Exception {

	private static final long serialVersionUID = 3333261489669700628L;

	public IHEException() {
		this("");
	}
	
	public IHEException(String arg0) {
		super(arg0);
	}

	public IHEException(String arg0, Throwable arg1) {
		super(arg0, arg1);
	}

	public IHEException(Throwable arg0) {
		super(arg0);
	}

	public IHEException(String message, Exception e) {
		super(message, e);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy