blob: 02aafec637f6f13e24175315ea41ec20d73da09d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#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);
};
|