| Current Path : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Exception/ |
| Current File : /var/www/clients/client3/web2/web/vendor/jms/serializer/src/Exception/RuntimeException.php |
<?php
declare(strict_types=1);
namespace JMS\Serializer\Exception;
/**
* RuntimeException for the Serializer.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class RuntimeException extends \RuntimeException implements Exception
{
public static function noMetadataForProperty(string $class, string $prop): self
{
return new RuntimeException(sprintf(
'You must define a type for %s::$%s.',
$class,
$prop,
));
}
}