mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
14 lines
256 B
PHP
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!");
|
|
}
|
|
}
|