View Javadoc
1   package com.kodexa.client.remote;
2   
3   import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
4   import lombok.Data;
5   
6   @Data
7   @JsonIgnoreProperties(ignoreUnknown = true)
8   public class CloudExceptionDetail {
9   
10      private String message;
11      private int statusCode;
12      private String errorMessage;
13      private String errorType;
14      private String executedVersion;
15      private String help;
16  
17  }