Home
last modified time | relevance | path

Searched refs:ParseException (Results 1 – 25 of 95) sorted by last modified time

1234

/plugin/combo/vendor/symfony/yaml/
H A DCHANGELOG.md55 * Using a mapping inside a multi-line string is deprecated and will throw a `ParseException` in 5.0.
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` i
[all...]
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::$parsedLineNumber + 1, $value, self::$parsedFilename);
266 * @throws ParseException When malformed inline YAML string is parsed
278 throw new ParseException(sprintf('Unexpected end of line, expected one of "%s".', implode('', $delimiters)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
281 throw new ParseException(sprintf('Unexpected characters (%s).', substr($scalar, $i)), self::$parsedLineNumber + 1, $scalar, self::$parsedFilename);
301 throw new ParseException(sprintf('Malformed inline YAML string: "%s".', $scalar), self::$parsedLineNumber + 1, null, self::$parsedFilename);
306 throw new ParseException(sprintf('The reserved indicator "%s" cannot start a plain scalar; you need to quote the scalar.', $output[0]), self::$parsedLineNumber + 1, $output, self::$parsedFilename);
320 * @throws ParseException When malformed inline YAML string is parsed
325 throw new ParseException(sprint
[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->filename);
155 throw new ParseException('A YAML file cannot contain tabs as indentation.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
163 throw new ParseException('You cannot define a sequence item when in a mapping.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename);
174 throw new ParseException('Complex mappings are not supported.', $this->getRealCurrentLineNb() + 1, $this->currentLine);
222 throw new ParseException('Yo
[all...]
H A DUnescaper.php14 use Symfony\Component\Yaml\Exception\ParseException; alias
111 throw new ParseException(sprintf('Found unknown escape character "%s".', $value));
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
/plugin/combo/vendor/symfony/yaml/Command/
H A DLintCommand.php25 use Symfony\Component\Yaml\Exception\ParseException; alias
140 throw new ParseException($message, $this->getParser()->getRealCurrentLineNb() + 1);
148 } catch (ParseException $e) {
/plugin/combo/vendor/symfony/yaml/Exception/
H A DParseException.php19 class ParseException extends RuntimeException class
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/Schedule/
H A DPlugin.php604 } catch (VObject\ParseException $e) {
/plugin/davcal/vendor/sabre/vobject/tests/VObject/
H A DReaderTest.php341 } catch (ParseException $e) {
372 } catch (ParseException $e) {
/plugin/davcal/vendor/sabre/vobject/lib/
H A DParseException.php12 class ParseException extends \Exception { class
H A DEofException.php13 class EofException extends ParseException {
/plugin/davcal/vendor/sabre/vobject/lib/Parser/
H A DJson.php8 Sabre\VObject\ParseException, alias
69 … throw new ParseException('The root component must either be a vcalendar, or a vcard');
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/davcal/vendor/sabre/xml/
H A DCHANGELOG.md80 * LibXMLException now inherits from ParseException, so it's easy for users to
/plugin/davcal/vendor/sabre/dav/tests/Sabre/CalDAV/
H A DExpandEventsDTSTARTandDTENDTest.php92 } catch (VObject\ParseException $e) {
/plugin/davcal/vendor/sabre/dav/lib/CalDAV/
H A DPlugin.php270 } catch (\Sabre\Xml\ParseException $e) {
814 } catch (VObject\ParseException $e) {
/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/davcal/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php358 } catch (VObject\ParseException $e) {
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php54 throw new VObject\ParseException('Supplied input could not be parsed as VCALENDAR.');
H A DVCard.php68 throw new VObject\ParseException('The supplied input contained non-VCARD data.');
/plugin/davcal/vendor/sabre/dav/lib/DAV/
H A DCorePlugin.php8 use Sabre\Xml\ParseException; alias
323 } catch (ParseException $e) {
380 } catch (ParseException $e) {
569 } catch (\Sabre\Xml\ParseException $e) {
/plugin/davcal/vendor/sabre/xml/lib/
H A DLibXMLException.php17 class LibXMLException extends ParseException {
H A DParseException.php15 class ParseException extends Exception { class
H A DReader.php176 …throw new ParseException('We hit the end of the document prematurely. This likely means that some …
H A DService.php83 * @throws ParseException
132 …throw new ParseException('Expected ' . $rootElementName . ' but received ' . $result['name'] . ' a…

1234