Implemented exceptions for the error-codes, mentioned in the API-docs
[facebook-errors] / src / main / java / de / juplo / facebook / errors / TemporaryRateLimitExceededException.java
1 package de.juplo.facebook.errors;
2
3
4
5 /**
6  * 341: Temporary rate-limit excession because of server-failure or throtteling
7  * @author Kai Moritz
8  * @see https://developers.facebook.com/docs/graph-api/using-graph-api/#errors
9  */
10 public class TemporaryRateLimitExceededException extends OAuthException
11 {
12   protected TemporaryRateLimitExceededException(FacebookErrorMessage error)
13   {
14     super(error);
15   }
16 }