aboutsummaryrefslogtreecommitdiff
path: root/src/old/tests/exception.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/old/tests/exception.cpp')
-rw-r--r--src/old/tests/exception.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/old/tests/exception.cpp b/src/old/tests/exception.cpp
new file mode 100644
index 0000000..6417692
--- /dev/null
+++ b/src/old/tests/exception.cpp
@@ -0,0 +1,16 @@
1#include <iostream>
2#include "exceptions.h"
3
4int main()
5{
6 try
7 {
8 throw ExceptionBase( 42, "There was an error on line: %d", __LINE__ );
9 }
10 catch( ExceptionBase &e )
11 {
12 std::cout << "Error "<< e.getErrorCode() << ": " << e.what() << "\n";
13 }
14
15 throw ExceptionBase( 112, "This exception wasn't caught!");
16}