UNPKG

trm-core

Version:

TRM (Transport Request Manager) Core

11 lines (10 loc) 394 B
import { AxiosError } from "axios"; import { SapMessage } from "./SapMessage"; import { ClientError } from "./ClientError"; export declare class RESTClientError extends ClientError { exceptionType: string; sapMessage: SapMessage; restError: AxiosError; messageLog?: any; constructor(exceptionType: string, sapMessage: SapMessage, restError: AxiosError, message?: string); }