blob: 89a8eb73df69364cb8767716316598f88c5d35dc [file] [log] [blame]
import inherits from 'inherits';
function NotFoundError(reason) {
Error.call(this, reason);
}
inherits(NotFoundError, Error);
NotFoundError.prototype.name = 'NotFoundError';
export default NotFoundError;