serviceException.h 441 Bytes
/**
 * \file serviceException.h
 *
 * \author Erickson Silva <erickson.silva@lavid.ufpb.br>
 * \date 2014
 */

#ifndef SERVICEEXCEPTION_H
#define SERVICEEXCEPTION_H

#include <lavidlib/base/RuntimeException.h>

using namespace std;
using namespace lavidlib;

class ServiceException : public RuntimeException {
 	
public:
 	ServiceException(const string message);
 	ServiceException(const char* message);

};
 
#endif /* SERVICEEXCEPTION_H */