17 lines
265 B
PHP
17 lines
265 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Scape\Exceptions;
|
|
|
|
/**
|
|
* Class PropertyNotFoundException
|
|
*
|
|
* Thrown in Debug mode when accessing undefined keys/properties.
|
|
*
|
|
* @package Scape\Exceptions
|
|
*/
|
|
class PropertyNotFoundException extends ScapeException
|
|
{
|
|
}
|