1
0
mirror of https://github.com/Chouchen/ShikiryuRSS.git synced 2024-06-02 09:57:58 +02:00
ShikiryuRSS/src/Exception/PropertyNotFoundException.php

16 lines
319 B
PHP
Raw Normal View History

2023-04-12 00:27:35 +02:00
<?php
namespace Shikiryu\SRSS\Exception;
class PropertyNotFoundException extends SRSSException
{
/**
* @param string $class
* @param string $name
*/
public function __construct($class, $name)
{
parent::__construct(sprintf('Property `%s` not found in `%s`', $name, $class));
}
}