| 21 | }; |
| 22 | |
| 23 | class IOError : public PyMeshException { |
| 24 | public: |
| 25 | IOError(const std::string& description) : |
| 26 | PyMeshException(description) {} |
| 27 | virtual ~IOError() throw() {} |
| 28 | }; |
| 29 | |
| 30 | class RuntimeError : public PyMeshException { |
| 31 | public: |
no outgoing calls
no test coverage detected