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

6 lines
143 B
C++

#include "error.hpp"
const char* type_error::what() const noexcept {
return "an error occured while checking the types of the program";
}