The exception stores the HttpStatus and HttpHeaders of the failed request
[facebook-errors] / src / main / java / de / juplo / facebook / errors / AccountRequestLimitReachedException.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  * 17: Account request limit reached.
12  * @author Kai Moritz
13  * @see https://developers.facebook.com/docs/graph-api/using-graph-api/#errors
14  */
15 public class AccountRequestLimitReachedException extends OAuthException
16 {
17   protected AccountRequestLimitReachedException(
18       HttpStatus status,
19       HttpHeaders headers,
20       FacebookErrorMessage error
21       )
22   {
23     super(status, headers, error);
24   }
25 }