We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca2572e commit 1c8c71aCopy full SHA for 1c8c71a
Source/Command/ProcessUserData/Error.ts
@@ -8,15 +8,15 @@ import { Data } from "effect";
8
export class ActiveEditorNotFoundError extends Data.TaggedError(
9
"ActiveEditorNotFoundError",
10
)<{}> {
11
- message = "No active text editor found. Please open a file to process.";
+ override message = "No active text editor found. Please open a file to process.";
12
}
13
14
export class ProcessingServiceError extends Data.TaggedError(
15
"ProcessingServiceError",
16
)<{
17
readonly cause: unknown;
18
}> {
19
- get message() {
+ override get message() {
20
const causeMessage =
21
this.cause instanceof Error
22
? this.cause.message
0 commit comments