aboutsummaryrefslogtreecommitdiff
path: root/lib/oauthexception.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/oauthexception.php')
-rw-r--r--lib/oauthexception.php30
1 files changed, 30 insertions, 0 deletions
diff --git a/lib/oauthexception.php b/lib/oauthexception.php
new file mode 100644
index 0000000..d1b26f8
--- /dev/null
+++ b/lib/oauthexception.php
@@ -0,0 +1,30 @@
+<?php
+/**
+ * Part of grauphel
+ *
+ * PHP version 5
+ *
+ * @category Tools
+ * @package Grauphel
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @copyright 2014 Christian Weiske
+ * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
+ * @link http://cweiske.de/grauphel.htm
+ */
+namespace OCA\Grauphel\Lib;
+
+/**
+ * OAuth error
+ *
+ * @category Tools
+ * @package Grauphel
+ * @author Christian Weiske <cweiske@cweiske.de>
+ * @copyright 2014 Christian Weiske
+ * @license http://www.gnu.org/licenses/agpl.html GNU AGPL v3
+ * @version Release: @package_version@
+ * @link http://cweiske.de/grauphel.htm
+ */
+class OAuthException extends \Exception
+{
+}
+?>