MCPcopy Create free account
hub / github.com/zenstackhq/zenstack / createNotSupportedError

Function createNotSupportedError

packages/orm/src/client/errors.ts:143–145  ·  view source on GitHub ↗
(message: string, options?: ErrorOptions)

Source from the content-addressed store, hash-verified

141}
142
143export function createNotSupportedError(message: string, options?: ErrorOptions) {
144 return new ORMError(ORMErrorReason.NOT_SUPPORTED, message, options);
145}
146
147export function createInternalError(message: string, model?: string, options?: ErrorOptions) {
148 const error = new ORMError(ORMErrorReason.INTERNAL_ERROR, message, options);

Callers 15

createModelCrudHandlerFunction · 0.90
transformInputMethod · 0.90
buildArrayContainsMethod · 0.90
buildArrayHasEveryMethod · 0.90
buildArrayHasSomeMethod · 0.90
buildFuzzyFilterMethod · 0.90
buildFullTextFilterMethod · 0.90
buildJsonArrayFilterMethod · 0.90
buildArrayContainsMethod · 0.90
buildArrayHasEveryMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected