ether-admin/node_modules/ant-design-vue/es/_util/unreachableException.js

5 lines
146 B
JavaScript

export default class UnreachableException {
constructor(value) {
this.error = new Error(`unreachable case: ${JSON.stringify(value)}`);
}
}