1234567891011121314151617181920212223242526272829 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-10
- * Changed: 2024-05-31
- *
- * */
- #include <ls-std/core/exception/IndexOutOfBoundsException.hpp>
- using ls::std::core::Exception;
- using ls::std::core::IndexOutOfBoundsException;
- using std::string;
- IndexOutOfBoundsException::IndexOutOfBoundsException() : Exception("IndexOutOfBoundsException")
- {}
- IndexOutOfBoundsException::IndexOutOfBoundsException(const string &_message) : IndexOutOfBoundsException()
- {
- this->_setMessage(_message);
- }
- IndexOutOfBoundsException::~IndexOutOfBoundsException() noexcept = default;
- const char *IndexOutOfBoundsException::what() const noexcept
- {
- return this->_getIdentifiedMessage("provided index is out of bounds!");
- }
|