mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-23 00:52:05 +00:00
14 lines
312 B
PHP
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
|
|
{
|
|
}
|