diff options
Diffstat (limited to 'src/tests/exception/exception.cpp')
-rw-r--r-- | src/tests/exception/exception.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/tests/exception/exception.cpp b/src/tests/exception/exception.cpp deleted file mode 100644 index 6417692..0000000 --- a/src/tests/exception/exception.cpp +++ /dev/null | |||
@@ -1,16 +0,0 @@ | |||
1 | #include <iostream> | ||
2 | #include "exceptions.h" | ||
3 | |||
4 | int 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 | } | ||