DBXE/classes/Modules/AmazonVendorDF/Exception/MissingInformationException...

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!");
}
}