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

7 lines
180 B
TypeScript
Raw Normal View History

2022-02-14 13:03:16 +00:00
import { SCIMError } from "../scim/Error";
export abstract class BaseError extends Error {
public readonly isBaseError = true;
public abstract toSCIMError(): SCIMError;
}