Skip to content

Commit 52cd8d4

Browse files
authoredApr 14, 2021
Added an error code indicating a field with an invalid value (#1342)
1 parent 490c8c1 commit 52cd8d4

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed
 

‎src/ParseError.js

+8
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,14 @@ ParseError.DUPLICATE_REQUEST = 159;
377377
*/
378378
ParseError.INVALID_EVENT_NAME = 160;
379379

380+
/**
381+
* Error code indicating that a field had an invalid value.
382+
*
383+
* @property {number} INVALID_VALUE
384+
* @static
385+
*/
386+
ParseError.INVALID_VALUE = 162;
387+
380388
/**
381389
* Error code indicating that the username is missing or empty.
382390
*

0 commit comments

Comments
 (0)
Please sign in to comment.