12345678910111213141516171819202122232425262728293031 |
- /*
- * Author: Patrick-Christopher Mattulat
- * Company: Lynar Studios
- * E-Mail: webmaster@lynarstudios.com
- * Created: 2023-02-10
- * Changed: 2023-05-19
- *
- * */
- #include <ls-std/core/exception/ExceptionMessage.hpp>
- #include <ls-std/core/exception/IndexOutOfBoundsException.hpp>
- using ls::std::core::Exception;
- using ls::std::core::IndexOutOfBoundsException;
- using std::move;
- 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!");
- }
|