001
002/*******************************************************************************
003 * Crown Copyright (c) 2006 - 2014, Copyright (c) 2006 - 2014 Kestral Computing & Health Intersections.
004 * All rights reserved. This program and the accompanying materials
005 * are made available under the terms of the Eclipse Public License v1.0
006 * which accompanies this distribution, and is available at
007 * http://www.eclipse.org/legal/epl-v10.html
008 * 
009 * Contributors:
010 *    Kestral Computing P/L - initial implementation
011 *    Health Intersections - ongoing maintenance
012 *******************************************************************************/
013
014package org.fhir.ucum;
015
016public class UcumException extends Exception {
017
018  public UcumException() {
019    super();
020  }
021
022  public UcumException(String arg0, Throwable arg1, boolean arg2, boolean arg3) {
023    super(arg0, arg1, arg2, arg3);
024  }
025
026  public UcumException(String arg0, Throwable arg1) {
027    super(arg0, arg1);
028  }
029
030  public UcumException(String arg0) {
031    super(arg0);
032  }
033
034  public UcumException(Throwable arg0) {
035    super(arg0);
036  }
037
038 
039
040}