@riocrypto/common 1.0.1475 → 1.0.1476
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -4,7 +4,7 @@ exports.UserNotEnabledInUSError = void 0;
|
|
|
4
4
|
const custom_error_1 = require("./custom-error");
|
|
5
5
|
class UserNotEnabledInUSError extends custom_error_1.CustomError {
|
|
6
6
|
constructor() {
|
|
7
|
-
super("User not approved to operate in the US");
|
|
7
|
+
super("User is not approved to operate in the US");
|
|
8
8
|
this.statusCode = 403;
|
|
9
9
|
this.internalCode = 42;
|
|
10
10
|
Object.setPrototypeOf(this, UserNotEnabledInUSError.prototype);
|
|
@@ -13,7 +13,7 @@ class UserNotEnabledInUSError extends custom_error_1.CustomError {
|
|
|
13
13
|
return [
|
|
14
14
|
{
|
|
15
15
|
code: this.internalCode,
|
|
16
|
-
message: "User not approved to operate in the US",
|
|
16
|
+
message: "User is not approved to operate in the US",
|
|
17
17
|
},
|
|
18
18
|
];
|
|
19
19
|
}
|