aspecd.exceptions module
Exceptions for the ASpecD package.
For preventing cyclic imports and for a better overview, all exception classes of the ASpecD package are collected in this module. It is save for every other module to import this module, as this module does not depend on any other modules.
- exception aspecd.exceptions.MissingParameterError(message='')
Bases:
Error
Exception raised when a necessary parameter is missing.
Specify the parameter in the message, to give users a hint what went wrong.
- exception aspecd.exceptions.MissingPlotterError(message='')
Bases:
Error
Exception raised when no plotter is provided.
- exception aspecd.exceptions.MissingDatasetError(message='')
Bases:
Error
Exception raised when no dataset exists to act on
- exception aspecd.exceptions.MissingSaverError(message='')
Bases:
Error
Exception raised when no saver is provided.
- exception aspecd.exceptions.MissingFilenameError(message='')
Bases:
Error
Exception raised when no filename was provided
- exception aspecd.exceptions.MissingPlotError(message='')
Bases:
Error
Exception raised when no plot exists to save.
- exception aspecd.exceptions.MissingFigureError(message='')
Bases:
Error
Exception raised when no figure is provided.
- exception aspecd.exceptions.MissingAxisError(message='')
Bases:
Error
Exception raised when no axis is provided.
- exception aspecd.exceptions.MissingLegendError(message='')
Bases:
Error
Exception raised when no legend is provided.
- exception aspecd.exceptions.MissingDrawingError(message='')
Bases:
Error
Exception raised when no drawing (line, …) is provided.
- exception aspecd.exceptions.MissingTargetError(message='')
Bases:
Error
Exception raised when expecting a filename but none is provided
- exception aspecd.exceptions.MissingRecipeError(message='')
Bases:
Error
Exception raised when no recipe exists to act on.
- exception aspecd.exceptions.MissingSourceError(message='')
Bases:
Error
Exception raised when expecting a filename but none is provided
- exception aspecd.exceptions.MissingProcessingStepError(message='')
Bases:
Error
Exception raised trying to process without processing_step
- exception aspecd.exceptions.MissingAnalysisStepError(message='')
Bases:
Error
Exception raised trying to analyse without analysis_step
- exception aspecd.exceptions.UndoWithEmptyHistoryError(message='')
Bases:
Error
Exception raised trying to undo with empty history
- exception aspecd.exceptions.UndoAtBeginningOfHistoryError(message='')
Bases:
Error
Exception raised trying to undo with history pointer at zero
- exception aspecd.exceptions.UndoStepUndoableError(message='')
Bases:
Error
Exception raised trying to undo an undoable step of history
- exception aspecd.exceptions.RedoAlreadyAtLatestChangeError(message='')
Bases:
Error
Exception raised trying to redo with empty history
- exception aspecd.exceptions.ProcessingWithLeadingHistoryError(message='')
Bases:
Error
Exception raised trying to process with leading history
- exception aspecd.exceptions.MissingImporterFactoryError(message='')
Bases:
Error
Exception raised when no ImporterFactory instance is provided
- exception aspecd.exceptions.AxesCountError(message='')
Bases:
Error
Exception raised for wrong number of axes
- exception aspecd.exceptions.AxesValuesInconsistentWithDataError(message='')
Bases:
Error
Exception raised for axes values inconsistent with data
- exception aspecd.exceptions.MissingImporterError(message='')
Bases:
Error
Exception raised importing without
aspecd.io.DatasetImporter
- exception aspecd.exceptions.MissingExporterError(message='')
Bases:
Error
Exception raised importing without
aspecd.io.DatasetExporter
- exception aspecd.exceptions.NoContentError(message='')
Bases:
Error
Exception raised when no content was provided
- exception aspecd.exceptions.UnknownScopeError(message='')
Bases:
Error
Exception raised when unknown scope was tried to set
- exception aspecd.exceptions.MissingAnnotationError(message='')
Bases:
Error
Exception raised when no annotation exists to act on
- exception aspecd.exceptions.InfofileTypeError(message='')
Bases:
Error
Exception raised for wrong file format.
- exception aspecd.exceptions.InfofileEmptyError(message='')
Bases:
Error
Exception raised for empty file.
- exception aspecd.exceptions.NotApplicableToDatasetError(message='')
Bases:
Error
Exception raised when task is not applicable to dataset.
- exception aspecd.exceptions.StyleNotFoundError(message='')
Bases:
Error
Exception raised when the requested style could not be found
- exception aspecd.exceptions.LaTeXExecutableNotFoundError(message='')
Bases:
Error
Exception raised when the LaTeX executable could not be found
- exception aspecd.exceptions.MissingDictError(message='')
Bases:
Error
Exception raised when expecting a dict but none is provided
- exception aspecd.exceptions.MissingDatasetFactoryError(message='')
Bases:
Error
Exception raised when no ImporterFactory instance is provided
- exception aspecd.exceptions.MissingTaskFactoryError(message='')
Bases:
Error
Exception raised when no TaskFactory instance is provided