tipc
A TIP to LLVM compiler
InternalError.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "Error.h"
4 
10 class InternalError : public Error {
11 public:
12  InternalError(const std::string &msg)
13  : Error(msg) {}
14 };
Base class for tipc errors.
Definition: Error.h:12
Class for tipc internal errors.
Definition: InternalError.h:10
InternalError(const std::string &msg)
Definition: InternalError.h:12