Reworked handling of error-responses from the Graph-API
[facebook-utils] / src / main / java / de / juplo / facebook / exceptions / UnmappedErrorException.java
diff --git a/src/main/java/de/juplo/facebook/exceptions/UnmappedErrorException.java b/src/main/java/de/juplo/facebook/exceptions/UnmappedErrorException.java
new file mode 100644 (file)
index 0000000..2ed9b95
--- /dev/null
@@ -0,0 +1,17 @@
+package de.juplo.facebook.exceptions;
+
+
+/**
+ * Marker class for error-messages, that are not mapped yet.
+ * Pleas help us to complete the list of possible errors and report errors,
+ * that are mapped to this class to info@juplo.de. Thanxs!
+ *
+ * @author Kai Moritz
+ */
+public class UnmappedErrorException extends GraphApiException
+{
+  protected  UnmappedErrorException(FacebookErrorMessage error)
+  {
+    super(error);
+  }
+}