Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/validator/error.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,11 @@ class validator_error : public std::exception {

public:

validator_error(std::string file, int line, std::string message) {
file_ = file;
line_ = line;
message_ = message;
validator_error(std::string file, int line, std::string message)
: file_(file), line_(line), message_(message) {
std::stringstream ss;
ss << "[" << file_ << ":" << line_ << "] " << message_;
what_ = ss.str();
}

int get_line() {
Expand All @@ -46,16 +47,15 @@ class validator_error : public std::exception {
}

virtual const char* what() const throw() {
std::stringstream ss;
ss << "[" << file_ << ":" << line_ << "] " << message_;
return ss.str().c_str();
return what_.c_str();
}

private:

std::string message_;
std::string file_;
int line_;
std::string what_;

};

Expand Down