2 #ifndef GRAMODS_CORE_EXITEXCEPTION
3 #define GRAMODS_CORE_EXITEXCEPTION
5 #include <gmCore/config.hh>
10 BEGIN_NAMESPACE_GMCORE;
28 : exit_code(exit_code) {}
Standard exception for exiting the application with a specified exit code.
Definition: ExitException.hh:21
const int exit_code
The exit code of the exit exception.
Definition: ExitException.hh:33
ExitException(int exit_code=0)
Creates an exit exception with the specified exit code, or an exit code of 0 (zero) if not specified.
Definition: ExitException.hh:27