mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
12 lines
377 B
JavaScript
12 lines
377 B
JavaScript
const EmptyErrorImpl = (() => {
|
|
function EmptyErrorImpl() {
|
|
Error.call(this);
|
|
this.message = 'no elements in sequence';
|
|
this.name = 'EmptyError';
|
|
return this;
|
|
}
|
|
EmptyErrorImpl.prototype = Object.create(Error.prototype);
|
|
return EmptyErrorImpl;
|
|
})();
|
|
export const EmptyError = EmptyErrorImpl;
|
|
//# sourceMappingURL=EmptyError.js.map
|