linkmobility-php-client/src/Exceptions/ExceptionMessages.php

32 lines
986 B
PHP
Raw Normal View History

2022-06-24 16:00:56 +02:00
<?php
/**
2022-07-13 10:50:45 +02:00
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* https://www.d3data.de
2022-06-24 16:00:56 +02:00
*
* @copyright (C) D3 Data Development (Inh. Thomas Dartsch)
2022-07-13 10:50:45 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link https://www.oxidmodule.com
2022-06-24 16:00:56 +02:00
*/
2022-07-13 10:50:45 +02:00
declare(strict_types=1);
2022-06-24 16:00:56 +02:00
namespace D3\LinkmobilityClient\Exceptions;
class ExceptionMessages
{
public const INVALID_SENDER = 'invalid sender phone number';
2022-06-24 16:00:56 +02:00
public const NOK_REQUEST_RETURN = 'request %1$s returns status code %2$s';
2022-06-24 16:00:56 +02:00
public const INVALID_RECIPIENT_PHONE = 'invalid recipient phone number';
2022-06-24 16:00:56 +02:00
public const NOT_A_MOBILE_NUMBER = 'not a mobile number';
public const EMPTY_RECIPIENT_LIST = 'request must contain a valid recipient';
public const DEBUG_NOSENDERORCOUNTRYCODE= 'no sender number or sender country code defined, use fallback to account default';
2022-07-13 10:41:23 +02:00
}