001package org.hl7.fhir.exceptions;
002
003import ca.uhn.fhir.parser.DataFormatException;
004
005public class FHIRFormatError extends DataFormatException {
006
007        private static final long serialVersionUID = 1L;
008
009        public FHIRFormatError() {
010                super();
011        }
012
013        public FHIRFormatError(String message, Throwable cause) {
014                super(message, cause);
015        }
016
017        public FHIRFormatError(String message) {
018                super(message);
019        }
020
021        public FHIRFormatError(Throwable cause) {
022                super(cause);
023        }
024
025}