We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 120c8c4 commit 2c9b364Copy full SHA for 2c9b364
1 file changed
lib/hono/LocalizedHttpException.ts
@@ -91,7 +91,9 @@ export class LocalizedHttpException extends HTTPException {
91
super(options.status ?? 500, {
92
cause: options.cause,
93
});
94
- this.message = options.technicalMessage ? `<${this.errorId}> ${options.technicalMessage}` : `<${this.errorId}>`;
+ this.message = options.technicalMessage
95
+ ? `<${this.errorId}> ${options.technicalMessage}`
96
+ : `<${this.errorId}>`;
97
}
98
99
/**
0 commit comments