refactor: Remove unused ConfigurationError

This commit is contained in:
Joachim Van Herwegen 2021-06-22 11:13:50 +02:00
parent db6498f213
commit 3e9f294123

View File

@ -1,8 +0,0 @@
/**
* An error thrown when something is flawed about the configuration.
*/
export class ConfigurationError extends Error {
public constructor(message: string) {
super(message);
}
}