This repository has been archived on 2024-09-23. You can view files and clone it, but cannot push or open issues or pull requests.
rocketchat-scim/errors/BaseError.ts
2022-02-14 14:03:16 +01:00

6 lines
180 B
TypeScript

import { SCIMError } from "../scim/Error";
export abstract class BaseError extends Error {
public readonly isBaseError = true;
public abstract toSCIMError(): SCIMError;
}