11 lines
241 B
PHP
11 lines
241 B
PHP
<?php
|
|
|
|
namespace FSVendor\WPDesk\Persistence;
|
|
|
|
use FSVendor\Psr\Container\NotFoundExceptionInterface;
|
|
/**
|
|
* @package WPDesk\Persistence
|
|
*/
|
|
class ElementNotExistsException extends \RuntimeException implements NotFoundExceptionInterface
|
|
{
|
|
}
|