aboutsummaryrefslogtreecommitdiffstats
path: root/include/jau/math/mat4f.hpp
diff options
context:
space:
mode:
authorSven Göthel <[email protected]>2024-05-19 17:01:45 +0200
committerSven Göthel <[email protected]>2024-05-19 17:01:45 +0200
commitdc12cbc34296c8f399fb90c74ad4d666bf705ad1 (patch)
treecbaa040f020993e954bc50a8fcad3dabf694dba1 /include/jau/math/mat4f.hpp
parentc4b0a992237c8355c85a7edb6a58b1f86221cb2d (diff)
cleanup C++20: Cleanup and test Exception* OO tree, ensure only one std::exception OO tree instance is included (as they are not using virtual base classes)
Diffstat (limited to 'include/jau/math/mat4f.hpp')
-rw-r--r--include/jau/math/mat4f.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/jau/math/mat4f.hpp b/include/jau/math/mat4f.hpp
index a0bc107..f016f3a 100644
--- a/include/jau/math/mat4f.hpp
+++ b/include/jau/math/mat4f.hpp
@@ -1203,10 +1203,10 @@ class alignas(Value_type) Matrix4 {
const value_type bottom, const value_type top,
const value_type zNear, const value_type zFar) {
if( zNear <= zero || zFar <= zNear ) {
- throw jau::IllegalArgumentException("Requirements zNear > 0 and zFar > zNear, but zNear "+std::to_string(zNear)+", zFar "+std::to_string(zFar), E_FILE_LINE);
+ throw jau::IllegalArgumentError("Requirements zNear > 0 and zFar > zNear, but zNear "+std::to_string(zNear)+", zFar "+std::to_string(zFar), E_FILE_LINE);
}
if( left == right || top == bottom) {
- throw jau::IllegalArgumentException("GL_INVALID_VALUE: top,bottom and left,right must not be equal", E_FILE_LINE);
+ throw jau::IllegalArgumentError("GL_INVALID_VALUE: top,bottom and left,right must not be equal", E_FILE_LINE);
}
{
// m00 = m11 = m22 = m33 = 1f;