Home
last modified time | relevance | path

Searched refs:InvalidMetadataException (Results 1 – 8 of 8) sorted by relevance

/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/
H A DClassMetadata.php7 use JMS\Serializer\Exception\InvalidMetadataException; alias
132 throw new InvalidMetadataException('The $fieldName cannot be empty.');
136 throw new InvalidMetadataException('The discriminator map cannot be empty.');
157 * @throws InvalidMetadataException When the accessor order is not valid.
158 * @throws InvalidMetadataException When the custom order is not valid.
163 … throw new InvalidMetadataException(sprintf('The accessor order "%s" is invalid.', $order));
204 throw new InvalidMetadataException('$object must be an instance of ClassMetadata.');
221 throw new InvalidMetadataException(sprintf(
250 …throw new InvalidMetadataException(sprintf('$uri is expected to be a strings, but got value %s.', …
374 throw new InvalidMetadataException(sprintf(
[all …]
H A DPropertyMetadata.php7 use JMS\Serializer\Exception\InvalidMetadataException; alias
167 …throw new InvalidMetadataException(sprintf('There is neither a public %s method, nor a public %s m…
175 …throw new InvalidMetadataException(sprintf('There is no public %s method in class %s. Please speci…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Metadata/Driver/
H A DExpressionMetadataTrait.php7 use JMS\Serializer\Exception\InvalidMetadataException; alias
21 * @throws InvalidMetadataException
32 …throw new InvalidMetadataException(sprintf('Can not parse the expression "%s"', $expression), 0, $…
H A DXmlDriver.php8 use JMS\Serializer\Exception\InvalidMetadataException; alias
53 …throw new InvalidMetadataException('Invalid XML content for metadata', 0, new XmlErrorException(li…
58 … throw new InvalidMetadataException(sprintf('Could not find class %s inside XML element.', $name));
96 …throw new InvalidMetadataException('Each discriminator-class element must have a "value" attribute…
114 …throw new InvalidMetadataException('The prefix attribute must be set for all xml-namespace element…
147 …throw new InvalidMetadataException('The method attribute must be set for all virtual-property elem…
342 …throw new InvalidMetadataException('The type attribute must be set for all callback-method element…
345 …throw new InvalidMetadataException('The name attribute must be set for all callback-method element…
363 …throw new InvalidMetadataException('The format attribute must be set for "handler" callback method…
366 …throw new InvalidMetadataException('The direction attribute must be set for "handler" callback met…
[all …]
H A DYamlDriver.php8 use JMS\Serializer\Exception\InvalidMetadataException; alias
49 …throw new InvalidMetadataException(sprintf('Expected metadata for class %s to be defined in %s.', …
78 …throw new InvalidMetadataException('The method ' . $methodName . ' not found in class ' . $class->…
326 … throw new InvalidMetadataException('The "field_name" attribute must be set for discriminators.');
330 …throw new InvalidMetadataException('The "map" attribute must be set, and be an array for discrimin…
358 …throw new InvalidMetadataException(sprintf('callback methods expects a string, or an array of stri…
364 …throw new InvalidMetadataException(sprintf('The method %s does not exist in class %s.', $name, $cl…
H A DAnnotationDriver.php38 use JMS\Serializer\Exception\InvalidMetadataException; alias
233 throw new InvalidMetadataException(sprintf(
254 …throw new InvalidMetadataException('Can not have an inline map and and inline map on the same clas…
/plugin/findologicxmlexport/vendor/jms/serializer/src/Exception/
H A DInvalidMetadataException.php12 class InvalidMetadataException extends \Exception implements Exception class
/plugin/findologicxmlexport/vendor/jms/serializer/tests/Metadata/Driver/
H A DBaseDriverTest.php7 use JMS\Serializer\Exception\InvalidMetadataException; alias