@hmcts/media-viewer
Version:
15 lines • 427 B
TypeScript
export declare enum ResponseType {
SUCCESS = "SUCCESS",
FAILURE = "FAILURE",
UNSUPPORTED = "UNSUPPORTED"
}
export interface ExceptionDetail {
httpResponseCode?: string;
message?: string;
}
export declare class ViewerException {
exceptionType?: string;
detail?: ExceptionDetail;
constructor(exceptionType?: string, detail?: ExceptionDetail);
}
//# sourceMappingURL=viewer-exception.model.d.ts.map