/*************************************************************************** * Universidade Federal da Paraíba * * Copyright (C) 2014 by Laboratório de Aplicações de Vídeo Digital * * * * Centro de Informática - UFPB - Campus I * * João Pessoa - PB - Brasil * * * * Author: Erickson Silva (erickson.silva@lavid.ufpb.br) * * * **************************************************************************/ #ifndef SERVICEEXCEPTION_H #define SERVICEEXCEPTION_H #include using namespace lavidlib; class ServiceException : public RuntimeException { public: ServiceException(const std::string message); ServiceException(const char* message); }; #endif /* SERVICEEXCEPTION_H */