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