Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
subversal
/
video
/
wp-content
/
plugins
/
wordpress-seo
/
vendor
/
yoast
/
whip
/
src
/
Exceptions
:
EmptyProperty.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace Yoast\WHIPv2\Exceptions; use Exception; /** * Class EmptyProperty. */ class EmptyProperty extends Exception { /** * EmptyProperty constructor. * * @param string $property Property name. */ public function __construct( $property ) { parent::__construct( \sprintf( '%s cannot be empty.', (string) $property ) ); } }