@aurigma/design-atoms
Version:
Design Atoms is a part of Customer's Canvas SDK which allows for manipulating individual design elements through your code.
13 lines (12 loc) • 389 B
TypeScript
import { Exception } from "@aurigma/design-atoms-model/Exception";
import { IResponse } from "../Utils/Ajax";
export declare class AjaxResponseException extends Exception {
ajaxResponse: IResponse;
name: string;
constructor(ajaxResponse: IResponse);
toJSON(): {
name: string;
innerException: Error | Exception;
message: string;
};
}