6b09427565
- 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
13 lines
277 B
TypeScript
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);
|
|
}
|
|
}
|