summaryrefslogtreecommitdiff
path: root/error.h
blob: e57267c8778bcd3d54a99ad2a2bef4c8e0c11fe3 (plain)
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
#pragma once

#include <stdexcept>
#include <string>

using namespace std;


class NameError : public runtime_error{
public:
	NameError(const string &what_arg);
	NameError(const char *what_arg);
};

class TypeError : public runtime_error{
public:
	TypeError(const string &what_arg);
	TypeError(const char *what_arg);
};

class FormError : public runtime_error{
public:
	FormError(const string &what_arg);
	FormError(const char *what_arg);
};