| 8710 | }; |
| 8711 | |
| 8712 | class FragmentationError : public SystemError |
| 8713 | { |
| 8714 | public: |
| 8715 | FragmentationError( std::string const & message ) : SystemError( make_error_code( Result::eErrorFragmentation ), message ) {} |
| 8716 | |
| 8717 | FragmentationError( char const * message ) : SystemError( make_error_code( Result::eErrorFragmentation ), message ) {} |
| 8718 | }; |
| 8719 | |
| 8720 | class NotPermittedError : public SystemError |
| 8721 | { |
no outgoing calls
no test coverage detected