/** * This type can be used to throw a Service error from an ExternalServiceTaskHandler. */ export declare class ServiceError { readonly name: string; readonly code: number | string; readonly message: string; readonly additionalInformation: any; constructor(name: string, code?: number | string, message?: string, details?: any); }