Files
myDrive/dist/utils/NotFoundError.js
T

9 lines
160 B
JavaScript

"use strict";
class NotFoundError extends Error {
constructor(args) {
super(args);
this.code = 404;
}
}
module.exports = NotFoundError;