import CustomError from "../CustomError"; import { ErrorType } from '../CustomError'; export default class SystemError extends CustomError{ static type = "SystemError" as ErrorType; }