1234567891011121314151617181920212223242526272829 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class OStatusShadowException extends Exception
- {
- public $profile;
-
- function __construct(Profile $profile, $message) {
- $this->profile = $profile;
- parent::__construct($message);
- }
- }
|