OpenXE/classes/Modules/AmazonVendorDF/Exception/MissingInformationException.php
2021-05-21 08:49:41 +02:00

14 lines
256 B
PHP

<?php
namespace Xentral\Modules\AmazonVendorDF\Exception;
use Exception;
class MissingInformationException extends Exception
{
public static function property(string $property)
{
return new static("\"{$property}\" is not set!");
}
}