class HTTPException extends Errorimport { HTTPException } from "https://dotland.deno.dev/x/hono@v4.2.2/http-exception.ts"; HTTPException must be used when a fatal error such as authentication failure occurs. ExamplesExample 1 import { HTTPException } from 'hono/http-exception' // ... app.post('/auth', async (c, next) => { // authentication if (authorized === false) { throw new HTTPException(401, { message: 'Custom error message' }) } await next() }) ConstructorsnewHTTPException(status?: StatusCode, options?: HTTPExceptionOptions)Propertiesreadonlyoptionalres: Responsereadonlystatus: StatusCodeMethodsgetResponse(): Response