Buckets:

imerfanrajabee's picture
download
raw
726 Bytes
import { createErrorClass } from './createErrorClass';
export interface NotFoundError extends Error {}
export interface NotFoundErrorCtor {
/**
* @deprecated Internal implementation detail. Do not construct error instances.
* Cannot be tagged as internal: https://github.com/ReactiveX/rxjs/issues/6269
*/
new (message: string): NotFoundError;
}
/**
* An error thrown when a value or values are missing from an
* observable sequence.
*
* @see {@link operators/single}
*/
export const NotFoundError: NotFoundErrorCtor = createErrorClass(
(_super) =>
function NotFoundErrorImpl(this: any, message: string) {
_super(this);
this.name = 'NotFoundError';
this.message = message;
}
);

Xet Storage Details

Size:
726 Bytes
·
Xet hash:
ba3383f85136a3f426e2a09e0bca7b9989bc37f5731e667165e2499881f01fb6

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.