mirror of https://github.com/pixelfed/pixelfed
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.
15 lines
389 B
PHTML
15 lines
389 B
PHTML
|
2 weeks ago
|
<?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 {}
|