Project

General

Profile

1
export interface SystemException {
2
  id: number;
3
  processId: number;
4
  clientId: string;
5
  jobName: string;
6
  dmsFileCode: string;
7
  message: string;
8
  cause: string;
9
  creationDatetime : Date;
10
  trace: string;
11
}
(46-46/50)