Files
max-bot-api-client-php/src/Exceptions/AttachmentNotReadyException.php
T
2025-12-06 15:15:39 +03:00

14 lines
312 B
PHP

<?php
declare(strict_types=1);
namespace BushlanovDev\MaxMessengerBot\Exceptions;
/**
* Exception thrown when an attachment is not yet ready for use.
* This typically occurs when trying to use an attachment that is still being processed.
*/
class AttachmentNotReadyException extends ClientApiException
{
}