xref: /plugin/oauth/Exception.php (revision 74b4d4a4cf1d79813740d8ba18696e5fb2b4089b)
1*74b4d4a4SAndreas Gohr<?php
2*74b4d4a4SAndreas Gohr
3*74b4d4a4SAndreas Gohrnamespace dokuwiki\plugin\oauth;
4*74b4d4a4SAndreas Gohr
5*74b4d4a4SAndreas Gohr/**
6*74b4d4a4SAndreas Gohr * OAuth Plugin Exceptions
7*74b4d4a4SAndreas Gohr *
8*74b4d4a4SAndreas Gohr * @todo maybe add debug logging here later
9*74b4d4a4SAndreas Gohr */
10*74b4d4a4SAndreas Gohrclass Exception extends \Exception
11*74b4d4a4SAndreas Gohr{
12*74b4d4a4SAndreas Gohr}
13