| 44 | namespace sm { |
| 45 | |
| 46 | class BufferStatusException : public StatusException { |
| 47 | public: |
| 48 | explicit BufferStatusException(const std::string& msg) |
| 49 | : StatusException("Buffer", msg) { |
| 50 | } |
| 51 | }; |
| 52 | |
| 53 | class ConstBuffer; |
| 54 |
no outgoing calls
no test coverage detected