2018-07-12 14:11:31 +02:00
|
|
|
/**
|
|
|
|
* custom exception that indicated that a collectionString is invalid.
|
|
|
|
*/
|
2018-06-30 16:56:18 +02:00
|
|
|
export class ImproperlyConfiguredError extends Error {
|
2018-07-12 14:11:31 +02:00
|
|
|
/**
|
|
|
|
* Default Constructor for Errors
|
|
|
|
* @param m The Error Message
|
|
|
|
*/
|
2018-06-30 16:56:18 +02:00
|
|
|
constructor(m: string) {
|
|
|
|
super(m);
|
|
|
|
}
|
|
|
|
}
|