-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[#2] Implement type wrappers for numeric types
- Loading branch information
Showing
9 changed files
with
1,684 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#ifndef ZSERIO_OUT_OF_RANGE_EXCEPTION_H_INC | ||
#define ZSERIO_OUT_OF_RANGE_EXCEPTION_H_INC | ||
|
||
#include "zserio/CppRuntimeException.h" | ||
|
||
namespace zserio | ||
{ | ||
|
||
/** | ||
* Exception thrown when a value is out of range. | ||
*/ | ||
class OutOfRangeException : public CppRuntimeException | ||
{ | ||
public: | ||
using CppRuntimeException::CppRuntimeException; | ||
}; | ||
|
||
} // namespace zserio | ||
|
||
#endif // ifndef ZSERIO_OUT_OF_RANGE_EXCEPTION_H_INC |
Oops, something went wrong.