Refactoring: moved all code concerned with error-handling in one package
[facebook-errors] / src / main / java / de / juplo / facebook / exceptions / UnmappedErrorException.java
1 package de.juplo.facebook.exceptions;
2
3
4 /**
5  * Marker class for error-messages, that are not mapped yet.
6  * Pleas help us to complete the list of possible errors and report errors,
7  * that are mapped to this class to info@juplo.de. Thanxs!
8  *
9  * @author Kai Moritz
10  */
11 public class UnmappedErrorException extends GraphApiException
12 {
13   protected  UnmappedErrorException(FacebookErrorMessage error)
14   {
15     super(error);
16   }
17 }