View Javadoc
1   package com.kodexa.client;
2   
3   import lombok.Data;
4   
5   import java.io.Serializable;
6   import java.util.ArrayList;
7   import java.util.List;
8   
9   /**
10   * A content exception
11   */
12  @Data
13  public class ContentException implements Serializable {
14  
15      private String id;
16  
17      private String tag;
18  
19      private String message;
20  
21      private String exceptionDetails;
22  
23      private String groupUuid;
24  
25      private String tagUuid;
26  
27      private String exceptionType;
28  
29      private String severity;
30  
31      private String nodeUuid;
32  
33  }