Implemented exceptions for the error-codes, mentioned in the API-docs
[facebook-errors] / src / main / java / de / juplo / facebook / errors / MultipleConcurrentPostsException.java
1 package de.juplo.facebook.errors;
2
3
4
5 /**
6  * 506: Multiple concurrent posts
7  * @author Kai Moritz
8  * @see https://developers.facebook.com/docs/graph-api/using-graph-api/#errors
9  */
10 public class MultipleConcurrentPostsException extends OAuthException
11 {
12   protected MultipleConcurrentPostsException(FacebookErrorMessage error)
13   {
14     super(error);
15   }
16 }