Feature Type
Changing existing functionality in the project
Problem Description
Error-handling in the project is currently done using exceptions. C++ 23 introduced [std::expected](https://en.cppreference.com/w/cpp/utility/expected) which provides a nice alternative to exceptions that makes error-handling a bit cleaner.
Feature Description
Replace exceptions with std::expected.
Alternative Solutions
N/A
Additional Context
No response
Feature Type
Changing existing functionality in the project
Problem Description
Error-handling in the project is currently done using exceptions. C++ 23 introduced
[std::expected](https://en.cppreference.com/w/cpp/utility/expected)which provides a nice alternative to exceptions that makes error-handling a bit cleaner.Feature Description
Replace exceptions with std::expected.
Alternative Solutions
N/A
Additional Context
No response