13 lines
282 B
TypeScript
13 lines
282 B
TypeScript
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
|
|
import { TaggedError } from "@fabric/core";
|
|
|
|
export class StoreQueryError extends TaggedError<"StoreQueryError"> {
|
|
constructor(
|
|
public message: string,
|
|
public context: any,
|
|
) {
|
|
super("StoreQueryError");
|
|
}
|
|
}
|