The exception stores the HttpStatus and HttpHeaders of the failed request
[facebook-errors] / src / main / java / de / juplo / facebook / errors / UnmappedErrorException.java
1 package de.juplo.facebook.errors;
2
3
4 import org.springframework.http.HttpHeaders;
5 import org.springframework.http.HttpStatus;
6
7
8
9
10 /**
11  * Marker class for error-messages, that are not mapped yet.
12  * Pleas help us to complete the list of possible errors and report errors,
13  * that are mapped to this class to info@juplo.de. Thanxs!
14  *
15  * @author Kai Moritz
16  */
17 public class UnmappedErrorException extends GraphApiException
18 {
19   protected  UnmappedErrorException(
20       HttpStatus status,
21       HttpHeaders headers,
22       FacebookErrorMessage error
23       )
24   {
25     super(status, headers, error);
26   }
27 }