recognizeException.h 1.08 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 RECOGNIZEEXCEPTION_H
 #define RECOGNIZEEXCEPTION_H

 #include <lavidlib/base/RuntimeException.h>

 using namespace lavidlib;
 
 	class RecognizeException : public RuntimeException {
 	public:
 		RecognizeException(const std::string message);
 		RecognizeException(const char* message);
 	};
 

 #endif /* RECOGNIZEEXCEPTION_H */