Guest User

Untitled

a guest
Jun 24th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. import javax.xml.bind.annotation.XmlRootElement;
  2.  
  3. @XmlRootElement
  4. public class RESTAPIErrorInfo {
  5. public final String errorDetail;
  6. public final String errorMessage;
  7.  
  8. public RESTAPIErrorInfo(Exception ex, String detail) {
  9. this.errorMessage = ex.getLocalizedMessage();
  10. this.errorDetail = detail;
  11. }
  12. }
Add Comment
Please, Sign In to add comment