/** * \file serviceException.h * * \author Erickson Silva * \date 2014 */ #ifndef SERVICEEXCEPTION_H #define SERVICEEXCEPTION_H #include using namespace std; using namespace lavidlib; class ServiceException : public RuntimeException { public: ServiceException(const string message); ServiceException(const char* message); }; #endif /* SERVICEEXCEPTION_H */