ant-design/components/_util/unreachableException.ts

6 lines
148 B
TypeScript
Raw Normal View History

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