| 28 | }; |
| 29 | |
| 30 | class RuntimeError : public PyMeshException { |
| 31 | public: |
| 32 | RuntimeError(const std::string& description) : |
| 33 | PyMeshException(description) {} |
| 34 | virtual ~RuntimeError() throw() {} |
| 35 | }; |
| 36 | |
| 37 | class NotImplementedError : public PyMeshException { |
| 38 | public: |
no outgoing calls