NRE_WGLException.hpp
Go to the documentation of this file.
1 
10  #pragma once
11 
12  #include "NRE_SystemException.hpp"
13 
18  namespace NRE {
23  namespace Exception {
24 
29  class WGLException : public SystemException {
30  public:
35  WGLException(Utility::String const& log) throw() : SystemException(("WGL Exception : " + log).getCData()) {
36  }
37  };
38  }
39  }
An exception thrown by wgl operation.
Definition: NRE_WGLException.hpp:29
SystemException(Utility::String const &log)
Definition: NRE_SystemException.hpp:35
Utility's API.
Declaration of System's API's Object : SystemException.
An exception thrown by system operation.
Definition: NRE_SystemException.hpp:29
WGLException(Utility::String const &log)
Definition: NRE_WGLException.hpp:35
The NearlyRealEngine's global namespace.