OpenSlides/client/src/app/core/exceptions.ts

6 lines
110 B
TypeScript
Raw Normal View History

2018-06-30 16:56:18 +02:00
export class ImproperlyConfiguredError extends Error {
constructor(m: string) {
super(m);
}
}