/** * */ package org.ihtsdo.otf.refset.exception; /** * @author Episteme Partners * */ public class EntityNotFoundException extends Exception { /** * */ private static final long serialVersionUID = 1L; /** * */ public EntityNotFoundException() { // TODO Auto-generated constructor stub } /** * @param message */ public EntityNotFoundException(String message) { super(message); // TODO Auto-generated constructor stub } /** * @param cause */ public EntityNotFoundException(Throwable cause) { super(cause); // TODO Auto-generated constructor stub } /** * @param message * @param cause */ public EntityNotFoundException(String message, Throwable cause) { super(message, cause); // TODO Auto-generated constructor stub } /** * @param message * @param cause * @param enableSuppression * @param writableStackTrace */ public EntityNotFoundException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); // TODO Auto-generated constructor stub } }