UNPKG

@bitrix24/b24ui-nuxt

Version:

Bitrix24 UI-Kit for developing web applications REST API for NUXT & VUE

13 lines (12 loc) 329 B
export class FormValidationException extends Error { formId; errors; children; constructor(formId, errors, childErrors) { super("Form validation exception"); this.formId = formId; this.errors = errors; this.children = childErrors; Object.setPrototypeOf(this, FormValidationException.prototype); } }