The body is printed out readable, if an exception occures during parsing
[facebook-errors] / src / main / java / de / juplo / facebook / errors / TooManyAppCallsException.java
1 package de.juplo.facebook.errors;
2
3
4
5 /**
6  * 4: To many API-calls
7  * @author Kai Moritz
8  * @see https://developers.facebook.com/docs/graph-api/using-graph-api/#errors
9  */
10 public class TooManyAppCallsException extends OAuthException
11 {
12   protected TooManyAppCallsException(FacebookErrorMessage error)
13   {
14     super(error);
15   }
16 }