| 225 | //------------------------------------------------------------------------------ |
| 226 | |
| 227 | class clipperException : public std::exception |
| 228 | { |
| 229 | public: |
| 230 | clipperException(const char* description) |
| 231 | throw(): std::exception(), m_description (description) {} |
| 232 | virtual ~clipperException() throw() {} |
| 233 | virtual const char* what() const throw() {return m_description.c_str();} |
| 234 | private: |
| 235 | std::string m_description; |
| 236 | }; |
| 237 | //------------------------------------------------------------------------------ |
| 238 | //------------------------------------------------------------------------------ |
| 239 |
no outgoing calls
no test coverage detected