Spaces:
Runtime error
Runtime error
| export class HttpError extends Error { | |
| constructor(statusCode, message, details) { | |
| super(message); | |
| this.name = "HttpError"; | |
| this.statusCode = statusCode; | |
| this.details = details; | |
| } | |
| } | |