Skip to content

Commit

Permalink
fixed type error on sdk exceptions
Browse files Browse the repository at this point in the history
  • Loading branch information
Ptroger committed May 1, 2024
1 parent 93874c7 commit 86e8b65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk/src/lib/exceptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class NotImplementedException extends NarvalSdkException {
code: number

constructor(message: string, context: Record<string, unknown> = {}, suggestedHttpCode: number = 501) {
super(message, context, suggestedHttpCode)
super(message, context)
this.code = suggestedHttpCode
this.name = 'NotImplementedError'
}
Expand Down

0 comments on commit 86e8b65

Please sign in to comment.