blob: f3f523b762c2cfe40942f256593d1ed3fe9da7f9 [file] [log] [blame]
import { createErrorClass } from './createErrorClass';
export const NotFoundError = createErrorClass((_super) => function NotFoundErrorImpl(message) {
_super(this);
this.name = 'NotFoundError';
this.message = message;
});
//# sourceMappingURL=NotFoundError.js.map