exceptions¶
Exceptions for general usage by the Turtle Canon tool.
FailedCreatingOntology
¶
Bases: TurtleCanonException
RDFlib failed to add one or more triples to a new rdflib.Graph
object.
Source code in turtle_canon/utils/exceptions.py
30 31 |
|
FailedExportToFile
¶
Bases: TurtleCanonException
Failed to export an ontology to file.
Source code in turtle_canon/utils/exceptions.py
14 15 |
|
FailedParsingFile
¶
Bases: TurtleCanonException
RDFlib failed parsing a Turtle file.
Source code in turtle_canon/utils/exceptions.py
26 27 |
|
FailedReadingFile
¶
Bases: TurtleCanonException
Failed to read the content of a Turtle file using UTF-8 encoding.
Source code in turtle_canon/utils/exceptions.py
18 19 |
|
InconsistencyError
¶
Bases: TurtleCanonException
An inconsistency was found.
Source code in turtle_canon/utils/exceptions.py
22 23 |
|
TurtleCanonException
¶
Bases: Exception
Base Exception for the Turtle Canon tool.
Source code in turtle_canon/utils/exceptions.py
6 7 |
|
TurtleFileNotFound
¶
Bases: TurtleCanonException
A Turtle file cannot be found.
Source code in turtle_canon/utils/exceptions.py
10 11 |
|