17 lines
305 B
C
17 lines
305 B
C
|
#ifndef OFDREQUESTEXCEPTION_H
|
||
|
#define OFDREQUESTEXCEPTION_H
|
||
|
|
||
|
#include <exception>
|
||
|
#include <string>
|
||
|
|
||
|
class OfdRequestException : public std::exception
|
||
|
{
|
||
|
private:
|
||
|
std::string message;
|
||
|
public:
|
||
|
OfdRequestException(const char* msg);
|
||
|
const char* what() throw();
|
||
|
};
|
||
|
|
||
|
#endif // OFDREQUESTEXCEPTION_H
|