serviceException.h 1.07 KB
/***************************************************************************
 *   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 <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 */