OGS
Exceptions.h
Go to the documentation of this file.
1
11#pragma once
12
13#include <stdexcept>
14#include <string>
15
16namespace NumLib
17{
18struct AssemblyException : public std::runtime_error
19{
20 explicit AssemblyException(std::string const& reason)
21 : std::runtime_error{"Error in process' assembly: " + reason} {};
22};
23} // namespace NumLib
AssemblyException(std::string const &reason)
Definition Exceptions.h:20