From 517d7cb051584f1e471429865491f365b0bb41ea Mon Sep 17 00:00:00 2001 From: Jon Moses Date: Mon, 4 Dec 2023 12:00:59 -0500 Subject: [PATCH] fix(typo): Fix 2 exception name typos --- lib/exceptions.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/exceptions.js b/lib/exceptions.js index a898889..3340b4f 100644 --- a/lib/exceptions.js +++ b/lib/exceptions.js @@ -68,7 +68,7 @@ class InvalidFieldException extends RequiredFieldException { * @name name * @property {String} name=InvalidFieldException Exception name **/ - this.name = 'InvalidFieldEception' + this.name = 'InvalidFieldException' /** * @readonly @@ -106,7 +106,7 @@ class InvalidChoiceException extends RequiredFieldException { * @name name * @property {String} name=InvalidChoiceException Exception name **/ - this.name = 'InvalidChoiceEception' + this.name = 'InvalidChoiceException' /** * @readonly