Skip to content

Commit 2571d3f

Browse files
committed
style(format): Fix formatting of exceptions.ts
Run prettier with the command `npm run format` to fix the formatting.
1 parent b8063d6 commit 2571d3f

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

lib/exceptions.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
export class SignatureValidationFailed extends Error {
2-
constructor(message: string, public signature?: string) {
2+
constructor(
3+
message: string,
4+
public signature?: string,
5+
) {
36
super(message);
47
}
58
}
69

710
export class JSONParseError extends Error {
8-
constructor(message: string, public raw: any) {
11+
constructor(
12+
message: string,
13+
public raw: any,
14+
) {
915
super(message);
1016
}
1117
}

0 commit comments

Comments
 (0)