src/lib/error.ts
RxapError
constructor(message: string, code?: string, scope?: string)
|
Defined in src/lib/error.ts:3
|
import { RxapError } from '@rxap/utilities';
export class RxapOpenApiError extends RxapError {
constructor(message: string, code?: string, scope?: string) {
super('@rxap/open-api', message, code ?? '', scope);
}
}