if a `pid` is in CURIE format and cannot be resolved because the prefix is unknown, an error during storage will be reported. SafeCURIEs will not be resolved. A SafeCURIE is a CURIE with one of the following properties: 1. It starts with the prefixes `http:` or `https:` 2. It is enclosed in `[` and `]`. 3. It is enclosed in `<` and `>`.
6 lines
89 B
Python
6 lines
89 B
Python
class ConfigError(Exception):
|
|
pass
|
|
|
|
|
|
class CurieResolutionError(Exception):
|
|
pass
|