#ifndef __SOFIE_DB_EXCEPTION__ #define __SOFIE_DB_EXCEPTION__ /** @file SOFIEDBException.h @author Brian Magill @brief For database exceptions passed from GATS_DB_Exception (This exception class does not have a constructor that works with THROW_GATS_EXCEPTION at the moment.) */ #include "GATS_Exception.h" class SOFIEDBException : public GATS_Exception { public: SOFIEDBException(std::string msg, const char *filename, const unsigned int linenumber) : GATS_Exception(msg.c_str(),filename,linenumber) {} }; #endif