You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pixelfed/app/Exceptions/InvalidDeliveryDestinationE...

15 lines
389 B
PHTML

<?php
namespace App\Exceptions;
use InvalidArgumentException;
/**
* Thrown when an ActivityPub inbox URL fails validation.
*
* Kept distinct from other InvalidArgumentExceptions so delivery callers
* can treat a bad or dead destination as expected fediverse churn rather
* than a programming error.
*/
class InvalidDeliveryDestinationException extends InvalidArgumentException {}