13 lines
244 B
PHP
13 lines
244 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace app\common\service\pharmacy;
|
|
|
|
use RuntimeException;
|
|
|
|
/** The pharmacy explicitly confirmed that no remote order was created. */
|
|
final class PharmacyRemoteRejectedException extends RuntimeException
|
|
{
|
|
}
|