forked from jiuyuan/InfiniTensor
13 lines
194 B
C
13 lines
194 B
C
|
#pragma once
|
||
|
#include <stdexcept>
|
||
|
#include <string>
|
||
|
|
||
|
namespace infini {
|
||
|
|
||
|
class Exception : public std::runtime_error {
|
||
|
public:
|
||
|
Exception(const std::string &msg);
|
||
|
};
|
||
|
|
||
|
} // namespace infini
|