#pragma once #include #include namespace torch { namespace jit { struct TORCH_API JITException : public std::runtime_error { explicit JITException(const std::string& msg); }; } // namespace jit } // namespace torch