GAMS  1.4.0
GamsException.h
Go to the documentation of this file.
1 /* -*- C++ -*- */
2 #ifndef _GAMS_EXCEPTIONS_GAMSEXCEPTION_H_
3 #define _GAMS_EXCEPTIONS_GAMSEXCEPTION_H_
4 
5 #include <string>
6 #include <stdexcept>
7 
8 namespace gams
9 {
10  namespace exceptions
11  {
15  class GamsException : public std::runtime_error
16  {
17  public:
18  using std::runtime_error::runtime_error;
19  };
20  }
21 }
22 
23 #endif /* _GAMS_EXCEPTIONS_GAMSEXCEPTION_H_ */
Base exception class for all custom Gams exceptions.
Definition: GamsException.h:16
Contains all GAMS-related tools, classes and code.