noticesaveexception.php 403 B

123456789101112131415161718
  1. <?php
  2. if (!defined('GNUSOCIAL')) { exit(1); }
  3. /**
  4. * Base exception class for when a notice cannot be saved
  5. *
  6. * @category Exception
  7. * @package GNUsocial
  8. * @author Mikael Nordfeldth <mmn@hethane.se>
  9. * @license https://www.gnu.org/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  10. * @link https://gnu.io/social
  11. */
  12. class NoticeSaveException extends ServerException
  13. {
  14. }