frontend/.pnpm-store/v3/files/e0/03084e64189898b19fd64431a4aca81bd6c29a7931793ddab0caa636f1476a7a759d501d0ca3fa5f2bcd64f033ec3f901e8d487bf3a3da307aadaed7aad984

7 lines
290 B
Plaintext

import { createErrorClass } from './createErrorClass';
export var EmptyError = createErrorClass(function (_super) { return function EmptyErrorImpl() {
_super(this);
this.name = 'EmptyError';
this.message = 'no elements in sequence';
}; });
//# sourceMappingURL=EmptyError.js.map