-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathParserExceptions.h
More file actions
51 lines (42 loc) · 841 Bytes
/
ParserExceptions.h
File metadata and controls
51 lines (42 loc) · 841 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#pragma once
#pragma warning(disable:4996)
#include <iostream>
#include <string.h>
#include <exception>
#include <string>
class FileOpeningError : public std::exception
{
public:
virtual const char* what() const throw()
{
return "Coudn`t open config file";
}
};
class GetIntValueError : public std::exception
{
public:
GetIntValueError(std::string field) :
_field(field)
{
}
virtual const char* what() const throw()
{
return strcat(strcat("Value of",_field.c_str()), "is not of integer type");
}
private:
std::string _field;
};
class GetStringValueError : public std::exception
{
public:
GetStringValueError(std::string field) :
_field(field)
{
}
virtual const char* what() const throw()
{
return strcat(strcat("Value of", _field.c_str()), "is not of string type");
}
private:
std::string _field;
};