mirror of
https://github.com/open-goal/jak-project
synced 2026-05-24 15:21:12 -04:00
71dda76e2b
* update doc * add disassemble and type checking * improve compiler error messages
9 lines
205 B
C++
9 lines
205 B
C++
#pragma once
|
|
|
|
#include <stdexcept>
|
|
|
|
class CompilerException : public std::runtime_error {
|
|
public:
|
|
CompilerException(const std::string& err) : std::runtime_error(err) {}
|
|
bool print_err_stack = true;
|
|
}; |