export class DataStoreNotInitializedError extends DataStoreError {
  constructor() {
    super("The data store is not initialized. Make sure to first call the `init` method.");
    this.name = "DataStoreNotInitializedError";