Новая сущность AdditionalUserProps с покрытием для будущей поддержки в документе
This commit is contained in:
25
src/Exceptions/EmptyAddUserPropNameException.php
Normal file
25
src/Exceptions/EmptyAddUserPropNameException.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright (c) 2020-2021 Антон Аксенов (Anthony Axenov)
|
||||
*
|
||||
* This code is licensed under MIT.
|
||||
* Этот код распространяется по лицензии MIT.
|
||||
* https://github.com/anthonyaxenov/atol-online/blob/master/LICENSE
|
||||
*/
|
||||
|
||||
declare(strict_types = 1);
|
||||
|
||||
namespace AtolOnline\Exceptions;
|
||||
|
||||
use AtolOnline\Constants\Ffd105Tags;
|
||||
|
||||
/**
|
||||
* Исключение, возникающее при пустом наименовании дополнительного реквизита
|
||||
*
|
||||
* @see https://online.atol.ru/files/API_atol_online_v4.pdf Документация, стр 32
|
||||
*/
|
||||
class EmptyAddUserPropNameException extends AtolException
|
||||
{
|
||||
protected $message = 'Наименование дополнительного реквизита не может быть пустым';
|
||||
protected array $ffd_tags = [Ffd105Tags::DOC_ADD_USER_PROP_NAME];
|
||||
}
|
||||
Reference in New Issue
Block a user