123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- if (!defined('GNUSOCIAL')) { exit(1); }
- class NoAvatarException extends NoResultException
- {
- public $target;
- public function __construct(Profile $target, Avatar $obj)
- {
- $this->target = $target;
- parent::__construct($obj);
- }
- }
|