1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2025-07-15 16:14:12 +00:00

Don't throw if reply is of error type - just put it in Reply.

This commit is contained in:
King_DuckZ 2016-06-20 18:06:26 +01:00
parent 53a42fa7c0
commit cdae333e1f
3 changed files with 17 additions and 13 deletions

View file

@ -90,11 +90,6 @@ namespace redis {
LengthArray{ arg_to_bin_safe_length(string_ref(parCommand)), arg_to_bin_safe_length(std::forward<Args>(parArgs))... }.data()
);
}
class RedisError : public std::runtime_error {
public:
RedisError ( const char* parMessage, std::size_t parLength );
};
} //namespace redis
#endif