using web::WebRes** (Response Object) Use to send a generic HTTP Status to the client.** ** HttpStatus(404, "Page Not Found")constclass HttpStatus {** The HTTP status code.** ** @see `web::WebRes.statusMsg`const Int code** The HTTP status message.** ** @see `web::WebRes.statusMsg`const Str msg** Custom user data const Obj? datanew make(Int statusCode, Str statusMsg := WebRes.statusMsg[statusCode], Err? data := null){this.code = statusCodethis.msg = statusMsgthis.data = data}override Str toStr(){"${code} - ${msg}"}}