Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
zhlajiex
/
Codeai
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
Codeai
/
backend
/
utils
/
errorResponse.js
zhlajiex
initial
1dc8372
11 days ago
raw
Copy download link
history
blame
contribute
delete
Safe
166 Bytes
class
ErrorResponse
extends
Error
{
constructor
(
message, statusCode
) {
super
(message);
this
.
statusCode
= statusCode;
}
}
module
.
exports
=
ErrorResponse
;