package edu.harvard.i2b2.crc.dao.setfinder.querybuilder; import edu.harvard.i2b2.common.exception.I2B2DAOException; public class ConceptNotFoundException extends I2B2DAOException { /** * */ private static final long serialVersionUID = 1L; public ConceptNotFoundException() { } /** * Constructor that takes message and the exception as inputs. * @param message * @param e */ public ConceptNotFoundException(String message, Exception e) { super(message, e); } /** * Constructor that takes message as input. * @param message */ public ConceptNotFoundException(String message) { super(message); } }