geändert: .gitignore
geändert: README.md geändert: pyproject.toml geändert: src/config_parser/__init__.py neue Datei: src/config_parser/_configuration.py neue Datei: src/config_parser/exceptions.py neue Datei: src/config_parser/ini.py neue Datei: src/config_parser/json.py neue Datei: src/config_parser/parse/ini.py neue Datei: src/config_parser/parse/json.py neue Datei: tests/ini/test_ini.py neue Datei: tests/json/test.json neue Datei: tests/json/test_json.py neue Datei: tests/json/test_parser.py neue Datei: tests/test_configuration_class.py
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
class ConfigurationSyntaxError(SyntaxError): ...
|
||||
|
||||
class EscapeSequenceSyntaxError(ConfigurationSyntaxError): ...
|
||||
|
||||
class INISyntaxError(ConfigurationSyntaxError): ...
|
||||
|
||||
class INIInvalidGroupHeader(INISyntaxError): ...
|
||||
class INIInvalidKeyValueLine(INISyntaxError): ...
|
||||
|
||||
|
||||
class JSONSyntaxError(ConfigurationSyntaxError): ...
|
||||
|
||||
class JSONValueSyntaxError(JSONSyntaxError): ...
|
||||
|
||||
class JSONNumberSyntaxError(JSONSyntaxError): ...
|
||||
class JSONStringSyntaxError(JSONSyntaxError): ...
|
||||
class JSONBooleanSyntaxError(JSONSyntaxError): ...
|
||||
class JSONNullSyntaxError(JSONSyntaxError): ...
|
||||
class JSONArraySyntaxError(JSONSyntaxError): ...
|
||||
class JSONObjectSyntaxError(JSONSyntaxError): ...
|
||||
|
||||
|
||||
class ConfigurationTypeError(TypeError): ...
|
||||
|
||||
class JSONTypeError(ConfigurationTypeError): ...
|
||||
Reference in New Issue
Block a user