Improve error codes

This commit is contained in:
hcz 2019-06-25 12:39:00 +08:00
parent 8a2c6985a4
commit 3368ed933f

View File

@ -10,7 +10,7 @@ namespace DB
namespace ErrorCodes namespace ErrorCodes
{ {
extern const int BAD_ARGUMENTS; extern const int ARGUMENT_OUT_OF_BOUND;
} }
template <typename Key> template <typename Key>
@ -59,7 +59,7 @@ public:
throw Exception( throw Exception(
"The step given in function " "The step given in function "
+ getName() + " should not be zero", + getName() + " should not be zero",
ErrorCodes::BAD_ARGUMENTS ErrorCodes::ARGUMENT_OUT_OF_BOUND
); );
if (end < begin) if (end < begin)
@ -71,7 +71,7 @@ public:
throw Exception( throw Exception(
"The range given in function " "The range given in function "
+ getName() + " contains too many elements", + getName() + " contains too many elements",
ErrorCodes::BAD_ARGUMENTS ErrorCodes::ARGUMENT_OUT_OF_BOUND
); );
} }