mirror of
https://github.com/BushlanovDev/max-bot-api-client-php.git
synced 2026-08-23 00:42:08 +00:00
12 lines
162 B
PHP
12 lines
162 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace BushlanovDev\MaxMessengerBot\Exceptions;
|
|
|
|
use LogicException;
|
|
|
|
class SerializationException extends LogicException
|
|
{
|
|
}
|