InfiniTensor/include/utils/exception.h

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