* \brief Thrown when a write operation targets a property that is provided * read-only (not owned) by the surrounding object. * * Registered with pybind11 in Property.cpp so that it surfaces on the Python * side as \c mitk.PropertyNotOwnedError (a subclass of \c AttributeError). */
| 23 | * side as \c mitk.PropertyNotOwnedError (a subclass of \c AttributeError). |
| 24 | */ |
| 25 | class PropertyNotOwnedError : public std::runtime_error |
| 26 | { |
| 27 | public: |
| 28 | using std::runtime_error::runtime_error; |
| 29 | }; |
| 30 | |
| 31 | #endif |
no outgoing calls
no test coverage detected