inputException.h
1.06 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 INPUTEXCEPTION_H
#define INPUTEXCEPTION_H
#include <lavidlib/base/RuntimeException.h>
using namespace lavidlib;
class InputException : public RuntimeException {
public:
InputException(const std::string message);
InputException(const char* message);
};
#endif /* INPUTEXCEPTION_H */