UNPKG

graplix

Version:

Authorization framework for implementing Relation-based Access Control (ReBAC) with the Resolver (Inspired by [GraphQL](https://graphql.org))

10 lines (7 loc) 282 B
import { UnimplementedError } from "../language/UnimplementedError"; export class ExceptionCollector { constructor(private errors: UnimplementedError[]) {} captureUnimplementedError(featureName: string): void { this.errors.push(new UnimplementedError(featureName)); } }