PreScriptException.cpp 208 B

1234567891011
  1. #include "PreScriptException.h"
  2. PreScriptException::PreScriptException(string message, int line) : message(message), line(line)
  3. {
  4. }
  5. /*const char* PreScriptException::what() const
  6. {
  7. return message;
  8. }*/