001package org.hl7.fhir.exceptions;
002
003public class UcumException extends FHIRException {
004
005        public UcumException() {
006                super();
007        }
008
009        public UcumException(String message, Throwable cause) {
010                super(message, cause);
011        }
012
013        public UcumException(String message) {
014                super(message);
015        }
016
017        public UcumException(Throwable cause) {
018                super(cause);
019        }
020
021}