scrivito
Version:
Scrivito is a professional, yet easy to use SaaS Enterprise Content Management Service, built for digital agencies and medium to large businesses. It is completely maintenance-free, cost-effective, and has unprecedented performance and security.
13 lines (11 loc) • 357 B
text/typescript
import { ScrivitoError } from 'scrivito_sdk/common';
/**
* A `NotLoadedError` is a legacy technique, only still used by the Scrivito UI.
* It is thrown when data is accessed in a synchronous fashion but is not yet
* available locally.
*/
export class NotLoadedError extends ScrivitoError {
constructor() {
super('Data is not yet loaded.');
}
}