@supernova-studio/client 0.47.6 → 0.47.7
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.
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3209,6 +3209,9 @@ var SupernovaException = class _SupernovaException extends Error {
|
|
|
3209
3209
|
static wrongFormat(message) {
|
|
3210
3210
|
return new _SupernovaException("WrongFormat", message);
|
|
3211
3211
|
}
|
|
3212
|
+
static validationError(message) {
|
|
3213
|
+
return new _SupernovaException("ValidationError", message);
|
|
3214
|
+
}
|
|
3212
3215
|
static accessDenied(message) {
|
|
3213
3216
|
return new _SupernovaException("AccessDenied", message);
|
|
3214
3217
|
}
|