mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
7 lines
290 B
JavaScript
7 lines
290 B
JavaScript
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
|