src/app/shared/models/task-exception.ts
Properties |
code |
Type : number
|
Defined in src/app/shared/models/task-exception.ts:5
|
component |
Type : string
|
Defined in src/app/shared/models/task-exception.ts:6
|
detail |
Type : string
|
Defined in src/app/shared/models/task-exception.ts:7
|
status |
Type : number
|
Defined in src/app/shared/models/task-exception.ts:4
|
task |
Type : Task
|
Defined in src/app/shared/models/task-exception.ts:8
|
import { Task } from './task';
export class TaskException {
status: number;
code: number;
component: string;
detail: string;
task: Task;
}