View Javadoc
1   package net.avcompris.commons3.web;
2   
3   import javax.annotation.Nullable;
4   
5   public interface ApplicationError {
6   
7   	@Nullable
8   	String getCorrelationId();
9   
10  	int getStatusCode();
11  
12  	@Nullable
13  	String getType();
14  
15  	@Nullable
16  	String getDescription();
17  }