for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace JeroenDesloovere\VCard\Exception;
use JeroenDesloovere\VCard\Property\NodeInterface;
use JeroenDesloovere\VCard\Property\Parameter\Kind;
use JeroenDesloovere\VCard\Property\Parameter\PropertyParameterInterface;
use JeroenDesloovere\VCard\Property\PropertyInterface;
use JeroenDesloovere\VCard\VCard;
class VCardException extends \Exception
{
public static function forExistingProperty(PropertyInterface $property): self
return new self(
'The property "' . get_class($property) . '" you are trying to add can only be added once.'
);
}
public static function forExistingPropertyParameter(PropertyParameterInterface $parameter): self
'The property parameter "' . get_class($parameter) . '" you are trying to add can only be added once.'
public static function forNotAllowedPropertyOnVCardKind(PropertyInterface $property, Kind $kind): self
'The property "' . get_class($property) . '" you are trying to add can only be added to vCard\'s of the ' . $kind->__toString() . ' kind.'
public static function forNotSupportedNode(NodeInterface $node): self
'The node "' . get_class($node) . '" you are trying to add is not supported. Possible values are: '
. implode(', ', VCard::POSSIBLE_VALUES)