-
Notifications
You must be signed in to change notification settings - Fork 92
/
camperror.cc
64 lines (54 loc) · 1.17 KB
/
camperror.cc
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
52
53
54
55
56
57
58
59
60
61
62
63
64
/*****
* camperror.cc
* 2003/02/25 Andy Hammerlindl
*
* Provides a way for the classes in camp to report errors in
* computation elegantly. After running a method on a camp object that
* could encounter an error, the program should call camp::errors to see
* if any errors were encountered.
*****/
#include <cassert>
#include <sstream>
#include "camperror.h"
#include "vm.h"
#include "errormsg.h"
namespace camp {
// Used internally to report an error in an operation.
void reportError(const string& desc)
{
em.runtime(vm::getPos());
em << desc;
em.sync(true);
throw handled_error();
}
// Used internally to report a warning in an operation.
void reportWarning(const string& desc)
{
em.warning(vm::getPos());
em << desc;
em.sync(true);
}
void reportFatal(const string& desc)
{
em.fatal(vm::getPos());
em << desc;
em.sync(true);
em.statusError();
try {
throw quit();
} catch(handled_error const&) {
}
}
void reportError(const ostringstream& desc)
{
reportError(desc.str());
}
void reportWarning(const ostringstream& desc)
{
reportWarning(desc.str());
}
void reportFatal(const ostringstream& desc)
{
reportFatal(desc.str());
}
} // namespace camp