← index
cplusplus17.Examples/examples/ScanLex/scan_exception.cpp
Source: cplusplus17.Examples/examples/ScanLex/scan_exception.cpp
#include "scan_exception.hpp"

namespace scan {
    ScanException::ScanException(const std::string &txt) : text {txt} {}
    std::string ScanException::error() { return text; }
}