Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 25 of 99) sorted by relevance

1234

/plugin/findologicxmlexport/vendor/symfony/yaml/
DInline.php15 use Symfony\Component\Yaml\Exception\ParseException; alias
64 * @throws ParseException
103 …throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)), self::$p…
264 * @throws ParseException When malformed inline YAML string is parsed
275 …throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $del…
278 …throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parse…
296 …throw new ParseException(sprintf('Malformed inline YAML string: %s.', $scalar), self::$parsedLineN…
301 …throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you nee…
315 * @throws ParseException When malformed inline YAML string is parsed
320 …throw new ParseException(sprintf('Malformed inline YAML string: %s.', substr($scalar, $i)), self::…
[all …]
DParser.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
48 * @throws ParseException If the file could not be read or the YAML is not valid
53 throw new ParseException(sprintf('File "%s" does not exist.', $filename));
57 throw new ParseException(sprintf('File "%s" cannot be read.', $filename));
77 * @throws ParseException If the YAML is not valid
82 …throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->fil…
159 …throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentL…
167 …throw new ParseException('You cannot define a sequence item when in a mapping', $this->getRealCurr…
178 …throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1,…
213 …throw new ParseException('You cannot define a mapping item when in a sequence', $this->currentLine…
[all …]
DYaml.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
50 * @throws ParseException If the file could not be read or the YAML is not valid
73 * @throws ParseException If the YAML is not valid
DCHANGELOG.md14 * complex mappings will throw a `ParseException`
19 * duplicate mapping keys throw a `ParseException`
20 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
22 * `%` at the beginning of an unquoted string throw a `ParseException`
24 `ParseException`
61 deprecated and will throw a `ParseException` in Symfony 4.0.
64 Mapping keys that are no strings will lead to a `ParseException` in Symfony
94 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0.
106 when the mapping key is not quoted and will lead to a `ParseException` in
116 deprecated and will lead to a `ParseException` in Symfony 4.0.
DUnescaper.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
117 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
/plugin/combo/vendor/symfony/yaml/
H A DInline.php15 use Symfony\Component\Yaml\Exception\ParseException; alias
59 * @throws ParseException
94 …throw new ParseException(sprintf('Unexpected characters near "%s".', substr($value, $i)), self::$p…
266 * @throws ParseException When malformed inline YAML string is parsed
278 …throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $del…
281 …throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parse…
301 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', $scalar), self::$parsedLin…
306 …throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you nee…
320 * @throws ParseException When malformed inline YAML string is parsed
325 …throw new ParseException(sprintf('Malformed inline YAML string: "%s".', substr($scalar, $i)), self…
[all …]
H A DParser.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
50 * @throws ParseException If the file could not be read or the YAML is not valid
55 throw new ParseException(sprintf('File "%s" does not exist.', $filename));
59 throw new ParseException(sprintf('File "%s" cannot be read.', $filename));
79 * @throws ParseException If the YAML is not valid
84 …throw new ParseException('The YAML value does not appear to be valid UTF-8.', -1, null, $this->fil…
155 …throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentL…
163 …throw new ParseException('You cannot define a sequence item when in a mapping.', $this->getRealCur…
174 …throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1,…
222 …throw new ParseException('You cannot define a mapping item when in a sequence.', $this->currentLin…
[all …]
H A DYaml.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
51 * @throws ParseException If the file could not be read or the YAML is not valid
74 * @throws ParseException If the YAML is not valid
H A DCHANGELOG.md55 …* Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.…
67 * complex mappings will throw a `ParseException`
72 * duplicate mapping keys throw a `ParseException`
73 * non-string mapping keys throw a `ParseException`, use the `Yaml::PARSE_KEYS_AS_STRINGS`
75 * `%` at the beginning of an unquoted string throw a `ParseException`
77 `ParseException`
114 deprecated and will throw a `ParseException` in Symfony 4.0.
117 Mapping keys that are no strings will lead to a `ParseException` in Symfony
147 * Omitting the key of a mapping is deprecated and will throw a `ParseException` in Symfony 4.0.
159 when the mapping key is not quoted and will lead to a `ParseException` in
[all …]
H A DUnescaper.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
111 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
DParseExceptionTest.php15 use Symfony\Component\Yaml\Exception\ParseException; alias
21 $exception = new ParseException('Error message', 42, 'foo: bar', '/var/www/app/config.yml');
29 $exception = new ParseException('Error message', 42, 'foo: bar', 'äöü.yml');
DInlineTest.php15 use Symfony\Component\Yaml\Exception\ParseException; alias
254 $this->expectException(ParseException::class);
257 …$this->setExpectedException(ParseException::class, sprintf('cannot start a plain scalar; you need …
274 $this->expectException(ParseException::class);
277 …$this->setExpectedException(ParseException::class, sprintf('cannot start a plain scalar; you need …
630 $this->setExpectedExceptionRegExp(ParseException::class, $expectedMessage);
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
DMimeDir.php11 use Sabre\VObject\ParseException; alias
163 throw new ParseException('This parser only supports VCARD and VCALENDAR files');
182 …throw new ParseException('Invalid MimeDir file. expected: "END:'.$this->root->name.'" got: "END:'.…
199 …throw new ParseException('Invalid MimeDir file. Unexpected component: "'.$line.'" in document type…
217 …throw new ParseException('Invalid MimeDir file. expected: "END:'.$component->name.'" got: "END:'.$…
287 throw new ParseException('Error reading from input stream');
375 …throw new ParseException('Invalid Mimedir file. Line starting at '.$this->startLine.' did not foll…
417 …throw new ParseException('Invalid Mimedir file. Line starting at '.$this->startLine.' did not foll…
460 throw new ParseException('Unsupported CHARSET: '.$propObj['CHARSET']);
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
DMimeDir.php10 use Sabre\VObject\ParseException; alias
169 throw new ParseException('This parser only supports VCARD and VCALENDAR files');
190 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN…
226 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END…
299 throw new ParseException('Error reading from input stream');
391 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
434 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
477 throw new ParseException('Unsupported CHARSET: ' . $propObj['CHARSET']);
/plugin/webdavclient/vendor/sabre/vobject/lib/Parser/
DMimeDir.php6 Sabre\VObject\ParseException, alias
125 throw new ParseException('This parser only supports VCARD and VCALENDAR files');
146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN…
181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END…
253 throw new ParseException('Error reading from input stream');
385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
/plugin/davcard/vendor/sabre/vobject/lib/Parser/
DMimeDir.php6 Sabre\VObject\ParseException, alias
125 throw new ParseException('This parser only supports VCARD and VCALENDAR files');
146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN…
181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END…
253 throw new ParseException('Error reading from input stream');
385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DMimeDir.php6 Sabre\VObject\ParseException, alias
125 throw new ParseException('This parser only supports VCARD and VCALENDAR files');
146 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $this->root->name . '" got: "EN…
181 …throw new ParseException('Invalid MimeDir file. expected: "END:' . $component->name . '" got: "END…
253 throw new ParseException('Error reading from input stream');
385 …throw new ParseException('Invalid Mimedir file. Line starting at ' . $this->startLine . ' did not …
/plugin/webdav/vendor/sabre/dav/lib/CalDAV/Xml/Property/
DSupportedCalendarComponentSet.php7 use Sabre\Xml\ParseException; alias
122 …throw new ParseException('supported-calendar-component-set must have at least one CALDAV:comp elem…
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Xml/Property/
H A DSupportedCalendarComponentSet.php6 use Sabre\Xml\ParseException; alias
122 …throw new ParseException('supported-calendar-component-set must have at least one CALDAV:comp elem…
/plugin/webdav/vendor/sabre/xml/lib/
DService.php104 * @throws ParseException
141 * @throws ParseException
163 …throw new ParseException('Expected ' . implode(' or ', (array)$rootElementName) . ' but received '…
/plugin/jdraw/lib/
Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
Djgraphx.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/jcapture/lib/
Dapache-mime4j-0.6.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
Dhttpcore-4.0.1.jarMETA-INF/MANIFEST.MF META-INF/HAMMURAP.SF META-INF/HAMMURAP ...
/plugin/davcal/vendor/sabre/xml/lib/
H A DService.php83 * @throws ParseException
132 …throw new ParseException('Expected ' . $rootElementName . ' but received ' . $result['name'] . ' a…

1234