blog-static/code/compiler/13/error.cpp

6 lines
143 B
C++
Raw Normal View History

2020-09-08 18:38:05 -07:00
#include "error.hpp"
const char* type_error::what() const noexcept {
return "an error occured while checking the types of the program";
}