OGS
Exceptions.h
Go to the documentation of this file.
1 
11 #pragma once
12 
13 #include <stdexcept>
14 #include <string>
15 
16 namespace NumLib
17 {
18 struct AssemblyException : public std::runtime_error
19 {
20  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