SoPlex Doxygen Documentation
exceptions.h
Go to the documentation of this file.
1 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2 /* */
3 /* This file is part of the class library */
4 /* SoPlex --- the Sequential object-oriented simPlex. */
5 /* */
6 /* Copyright (C) 1996-2012 Konrad-Zuse-Zentrum */
7 /* fuer Informationstechnik Berlin */
8 /* */
9 /* SoPlex is distributed under the terms of the ZIB Academic Licence. */
10 /* */
11 /* You should have received a copy of the ZIB Academic License */
12 /* along with SoPlex; see the file COPYING. If not email to soplex@zib.de. */
13 /* */
14 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
15 
16 /**@file exceptions.h
17  * @brief Exception classes for SoPlex.
18  */
19 #ifndef _EXCEPTIONS_H_
20 #define _EXCEPTIONS_H_
21 
22 #include <string>
23 
24 namespace soplex
25 {
26  /**@brief Exception base class.
27  * @ingroup Elementary
28  *
29  * This class implements a base class for our SoPlex exceptions
30  * We provide a what() function which returns the exception message.
31  */
33  {
34  private:
35  //----------------------------------------
36  /**@name Private data */
37  //@{
38  /// Exception message.
39  std::string msg;
40  //@}
41  public:
42  //----------------------------------------
43  /**@name Construction / destruction */
44  //@{
45  /// constructor
46  /** The constructor receives an optional string as an exception message.
47  */
48  SPxException(const std::string& m = "") : msg(m) {}
49  /// destructor
50  virtual ~SPxException() {}
51  //@}
52 
53  //----------------------------------------
54  /**@name Access / modification */
55  //@{
56  /// returns exception message
57  virtual std::string what() {
58  return msg;
59  }
60  //@}
61  };
62 
63  /**@brief Exception class for out of memory exceptions.
64  * @ingroup Elementary
65  *
66  * This class is derived from the SoPlex exception base class.
67  * It does not provide any new functionality.
68  */
70  {
71  public:
72  //----------------------------------------
73  /**@name Construction / destruction */
74  //@{
75  /// constructor
76  /** The constructor receives an optional string as an exception message.
77  */
78  SPxMemoryException(const std::string& m = "") : SPxException(m) {}
79  //@}
80  };
81 
82  /**@brief Exception class for status exceptions during the computations
83  * @ingroup Elementary
84  *
85  * This class is derived from the SoPlex exception base class.
86  * It does not provide any new functionality.
87  */
89  {
90  public:
91  //----------------------------------------
92  /**@name Construction / destruction */
93  //@{
94  /// constructor
95  /** The constructor receives an optional string as an exception message.
96  */
97  SPxStatusException(const std::string& m = "") : SPxException(m) {}
98  //@}
99  };
100 
101  /**@brief Exception class for things that should NEVER happen.
102  * @ingroup Elementary
103  *
104  * This class is derived from the SoPlex exception base class.
105  * It does not provide any new functionality. Most often it is used to replace
106  * assert(false) terms in earlier code.
107  */
109  {
110  public:
111  //----------------------------------------
112  /**@name Construction / destruction */
113  //@{
114  /// constructor
115  /** The constructor receives an optional string as an exception message.
116  */
117  SPxInternalCodeException(const std::string& m = "") : SPxException(m) {}
118  //@}
119  };
120 
121 
122  /**@brief Exception class for incorrect usage of interface methods.
123  * @ingroup Elementary
124  */
126  {
127  public:
128  //----------------------------------------
129  /**@name Construction / destruction */
130  //@{
131  /// constructor
132  /** The constructor receives an optional string as an exception message.
133  */
134  SPxInterfaceException(const std::string& m = "") : SPxException(m) {}
135  //@}
136  };
137 
138 } //namespace soplex
139 
140 #endif // _EXCEPTIONS_H_
141