Skip to content

Commit 1c8c71a

Browse files
1 parent ca2572e commit 1c8c71a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Source/Command/ProcessUserData/Error.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ import { Data } from "effect";
88
export class ActiveEditorNotFoundError extends Data.TaggedError(
99
"ActiveEditorNotFoundError",
1010
)<{}> {
11-
message = "No active text editor found. Please open a file to process.";
11+
override message = "No active text editor found. Please open a file to process.";
1212
}
1313

1414
export class ProcessingServiceError extends Data.TaggedError(
1515
"ProcessingServiceError",
1616
)<{
1717
readonly cause: unknown;
1818
}> {
19-
get message() {
19+
override get message() {
2020
const causeMessage =
2121
this.cause instanceof Error
2222
? this.cause.message

0 commit comments

Comments
 (0)