abb-core
Version:
Application Build Butler Core
25 lines (24 loc) • 590 B
TypeScript
export interface IABBError {
message: string;
/**
* @type IABBSettingsReduxState.backendURL
* @description defined in core
*/
backendURL: string;
/**
* @type IABBSettings.createDataMethod
* @description defined in core
*/
createDataMethod: string;
data?: object;
/**
* @type string
* @description error code. structure: <ApplicationArea>-<Component>-<Code>
*/
code: string;
/**
* @type boolean
* @description prevents the error to be logged to the server
*/
preventLogToServer?: boolean;
}