NRE_SystemException.hpp
Go to the documentation of this file.
1 
10  #pragma once
11 
12  #include <Header/NRE_Utility.hpp>
13 
18  namespace NRE {
23  namespace Exception {
24 
29  class SystemException : public IException {
30  public:
35  SystemException(Utility::String const& log) throw() : IException(log) {
36  }
37  };
38  }
39  }
SystemException(Utility::String const &log)
Definition: NRE_SystemException.hpp:35
Utility&#39;s API.
An exception thrown by system operation.
Definition: NRE_SystemException.hpp:29
The NearlyRealEngine&#39;s global namespace.