An error used to indicate an issue validating against a standard schema.
API
class StandardSchemaValidationError extends BaseNgValidationError {
constructor(issue: StandardSchemaV1.Issue, options?: ValidationErrorOptions | undefined): StandardSchemaValidationError;
readonly kind: "standardSchema";
readonly override fieldTree: FieldTree<unknown>;
readonly override message?: string | undefined;
}
constructor
StandardSchemaValidationError
@paramissue
StandardSchemaV1.Issue
@returns
StandardSchemaValidationError
kind
"standardSchema"fieldTree
FieldTree<unknown>The field associated with this error.
message
string | undefinedHuman readable error message.