File tree Expand file tree Collapse file tree
SIF3InfraREST/SIF3REST/src/main/java/sif3/infra/rest/queue/types Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1818
1919import java .io .Serializable ;
2020
21+ import sif3 .common .ws .ErrorDetails ;
22+
2123/**
2224 * This class is a utility type to allow a consumer to package the actual ERROR data and related
2325 * information in one structure. This type uses the actual ERROR payload data as a String as it has been
3335public class ErrorInfo extends DelayedBaseInfo implements Serializable
3436{
3537 private static final long serialVersionUID = 626191573052681937L ;
38+
39+ private ErrorDetails errorDetail = null ;
40+
41+ public ErrorDetails getErrorDetail ()
42+ {
43+ return errorDetail ;
44+ }
45+
46+ public void setErrorDetail (ErrorDetails errorDetail )
47+ {
48+ this .errorDetail = errorDetail ;
49+ }
50+
51+ @ Override
52+ public String toString ()
53+ {
54+ return "ErrorInfo [errorDetail=" + errorDetail + ", toString()=" + super .toString () + "]" ;
55+ }
3656}
You can’t perform that action at this time.
0 commit comments