elna/source/result.cpp

26 lines
502 B
C++
Raw Normal View History

2024-03-07 09:15:11 +01:00
#include "elna/source/result.hpp"
2024-02-22 21:29:25 +01:00
2024-03-07 09:15:11 +01:00
namespace elna::source
2024-03-03 13:11:39 +01:00
{
error::error(const char *message, const source::position position) noexcept
2024-02-22 21:29:25 +01:00
{
2024-02-25 15:16:19 +01:00
this->message = message;
this->position = position;
2024-02-22 21:29:25 +01:00
}
2024-03-03 13:11:39 +01:00
char const *error::what() const noexcept
2024-02-22 21:29:25 +01:00
{
2024-02-25 15:16:19 +01:00
return this->message;
2024-02-22 21:29:25 +01:00
}
2024-03-03 13:11:39 +01:00
std::size_t error::line() const noexcept
2024-02-22 21:29:25 +01:00
{
2024-02-25 15:16:19 +01:00
return this->position.line;
2024-02-22 21:29:25 +01:00
}
2024-03-03 13:11:39 +01:00
std::size_t error::column() const noexcept
2024-02-22 21:29:25 +01:00
{
2024-02-25 15:16:19 +01:00
return this->position.column;
2024-02-22 21:29:25 +01:00
}
2024-03-03 13:11:39 +01:00
}