10 lines
159 B
C++
10 lines
159 B
C++
|
|
||
|
#include "bolt/Diagnostics.hpp"
|
||
|
|
||
|
namespace bolt {
|
||
|
|
||
|
Diagnostic::Diagnostic():
|
||
|
std::runtime_error("a compiler error occurred without being caught") {}
|
||
|
|
||
|
}
|