Skip to content

Commit

Permalink
fix(typo): Fix 2 exception name typos
Browse files Browse the repository at this point in the history
  • Loading branch information
jmoses authored and esatterwhite committed Dec 4, 2023
1 parent 755109f commit 517d7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/exceptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class InvalidFieldException extends RequiredFieldException {
* @name name
* @property {String} name=InvalidFieldException Exception name
**/
this.name = 'InvalidFieldEception'
this.name = 'InvalidFieldException'

/**
* @readonly
Expand Down Expand Up @@ -106,7 +106,7 @@ class InvalidChoiceException extends RequiredFieldException {
* @name name
* @property {String} name=InvalidChoiceException Exception name
**/
this.name = 'InvalidChoiceEception'
this.name = 'InvalidChoiceException'

/**
* @readonly
Expand Down

0 comments on commit 517d7cb

Please sign in to comment.