diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2009-08-20 17:13:40 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2009-08-20 17:13:40 -0400 |
commit | 4b2aa517501037e86e4a3c3bad3f363dcf8a26c6 (patch) | |
tree | df144b5bd3aeb9bfc91c5c4be6bd75a71f1dbd4a /extlib/libomb/invalidyadisexception.php | |
parent | 8f122dd71efcc54b820629bc4c39efe91b8e8726 (diff) | |
parent | b0bb1fff2e79a01b2fa2eece79d2c644860bbb97 (diff) |
Merge branch '0.9.x' of git@gitorious.org:laconica/mainline into 0.9.x
Diffstat (limited to 'extlib/libomb/invalidyadisexception.php')
-rwxr-xr-x | extlib/libomb/invalidyadisexception.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/extlib/libomb/invalidyadisexception.php b/extlib/libomb/invalidyadisexception.php new file mode 100755 index 000000000..797b7b95b --- /dev/null +++ b/extlib/libomb/invalidyadisexception.php @@ -0,0 +1,31 @@ +<?php +/** + * Exception stating that a requested url does not resolve to a valid yadis + * + * This exception is raised when OMB_Service is not able to discover a valid + * yadis location with XRDS. + * + * PHP version 5 + * + * LICENSE: This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see <http://www.gnu.org/licenses/>. + * + * @package OMB + * @author Adrian Lang <mail@adrianlang.de> + * @copyright 2009 Adrian Lang + * @license http://www.gnu.org/licenses/agpl.html GNU AGPL 3.0 + **/ +class OMB_InvalidYadisException extends Exception { + +} +?> |