From 737100eb7dc80c0aed59f7a079bbc3ba73dc48c0 Mon Sep 17 00:00:00 2001 From: Maksim Ivanov Date: Mon, 30 Sep 2024 11:58:14 +0300 Subject: [PATCH] chore: mark redundant some classes as deprecated (#9255) --- projects/testing/exceptions/element-is-not-input.exception.ts | 3 +++ projects/testing/exceptions/field-not-found.exception.ts | 3 +++ 2 files changed, 6 insertions(+) diff --git a/projects/testing/exceptions/element-is-not-input.exception.ts b/projects/testing/exceptions/element-is-not-input.exception.ts index edc25352e0bd..717591da6dfe 100644 --- a/projects/testing/exceptions/element-is-not-input.exception.ts +++ b/projects/testing/exceptions/element-is-not-input.exception.ts @@ -1,3 +1,6 @@ +/** + * @deprecated: drop in v5 + */ export class TuiElementIsNotInputException extends Error { constructor(automationId: string) { super(`Element ${automationId} is not `); diff --git a/projects/testing/exceptions/field-not-found.exception.ts b/projects/testing/exceptions/field-not-found.exception.ts index 2c42464c262c..46f10ebb9b0f 100644 --- a/projects/testing/exceptions/field-not-found.exception.ts +++ b/projects/testing/exceptions/field-not-found.exception.ts @@ -1,3 +1,6 @@ +/** + * @deprecated: drop in v5 + */ export class TuiFieldNotFoundException extends Error { constructor(automationId: string) { super(`Field ${automationId} not found`);