001package org.hl7.fhir.exceptions; 002 003public class FHIRException extends RuntimeException { 004 005 // Note that the 4-argument constructor has been removed as it is not JDK6 compatible 006 007 public FHIRException() { 008 super(); 009 } 010 011 public FHIRException(String message, Throwable cause) { 012 super(message, cause); 013 } 014 015 public FHIRException(String message) { 016 super(message); 017 } 018 019 public FHIRException(Throwable cause) { 020 super(cause); 021 } 022 023}