OpenSlides/client/src/app/core/exceptions.ts
Sean Engelhardt 6b09427565 document, restructure, add relations
- models get other models from DataStore (Relations)
- documentation using Compodoc
- rename and restructure
- http-interceptor makes all http-objections obsolete
- created 'Deserializable model' interface for better mapping of JSON objects
  - Supports multiple nested objects
  - No foreign dependancies, no magic
  - Simple yet efficient deserialize function
  - arrays of nested objects
- created more classes for better OOP AOP
2018-08-15 10:19:46 +02:00

13 lines
277 B
TypeScript

/**
* custom exception that indicated that a collectionString is invalid.
*/
export class ImproperlyConfiguredError extends Error {
/**
* Default Constructor for Errors
* @param m The Error Message
*/
constructor(m: string) {
super(m);
}
}