Skip to content

Commit

Permalink
chore: mark redundant some classes as deprecated (#9255)
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode authored Sep 30, 2024
1 parent 1426194 commit 737100e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions projects/testing/exceptions/element-is-not-input.exception.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/**
* @deprecated: drop in v5
*/
export class TuiElementIsNotInputException extends Error {
constructor(automationId: string) {
super(`Element ${automationId} is not <input />`);
Expand Down
3 changes: 3 additions & 0 deletions projects/testing/exceptions/field-not-found.exception.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/**
* @deprecated: drop in v5
*/
export class TuiFieldNotFoundException extends Error {
constructor(automationId: string) {
super(`Field ${automationId} not found`);
Expand Down

0 comments on commit 737100e

Please sign in to comment.