Brak opisu
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

exceptions.py 307B

1234567891011121314151617
  1. ## @package lodel.plugin.exceptions Plugin management specific exceptions
  2. class PluginError(Exception):
  3. pass
  4. class PluginVersionError(PluginError):
  5. pass
  6. class PluginTypeError(PluginError):
  7. pass
  8. class LodelScriptError(Exception):
  9. pass
  10. class DatasourcePluginError(PluginError):
  11. pass