Source code for hyperstream.utils.errors

# The MIT License (MIT) # Copyright (c) 2014-2017 University of Bristol
#
#  Permission is hereby granted, free of charge, to any person obtaining a copy
#  of this software and associated documentation files (the "Software"), to deal
#  in the Software without restriction, including without limitation the rights
#  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#  copies of the Software, and to permit persons to whom the Software is
#  furnished to do so, subject to the following conditions:
#
#  The above copyright notice and this permission notice shall be included in all
#  copies or substantial portions of the Software.
#
#  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
#  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
#  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
#  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
#  DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
#  OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
#  OR OTHER DEALINGS IN THE SOFTWARE.

import sys
import logging


[docs]def handle_exception(exc_type, exc_value, exc_traceback): if issubclass(exc_type, KeyboardInterrupt): sys.__excepthook__(exc_type, exc_value, exc_traceback) return logging.error("Uncaught exception", exc_info=(exc_type, exc_value, exc_traceback))
[docs]class ConfigurationError(Exception): pass
[docs]class StreamNotFoundError(Exception): pass
[docs]class MultipleStreamsFoundError(Exception): pass
[docs]class StreamAlreadyExistsError(Exception): pass
[docs]class StreamDataNotAvailableError(Exception): pass
[docs]class ToolNotFoundError(Exception): pass
[docs]class ToolInitialisationError(Exception): pass
[docs]class IncompatibleToolError(Exception): pass
[docs]class ChannelNotFoundError(Exception): pass
[docs]class ChannelAlreadyExistsError(Exception): pass
[docs]class IncompatiblePlatesError(Exception): pass
[docs]class StreamNotAvailableError(Exception): message = 'The stream is not available after {} and cannot be calculated' def __init__(self, up_to_timestamp): super(StreamNotAvailableError, self).__init__(self.message.format(up_to_timestamp))
[docs]class ToolExecutionError(Exception): message = 'Tool execution did not cover the time interval {}.' def __init__(self, required_intervals): super(ToolExecutionError, self).__init__(self.message.format(required_intervals))
[docs]class PlateEmptyError(Exception): message = 'Plate values for {} empty' def __init__(self, plate_id): super(PlateEmptyError, self).__init__(self.message.format(plate_id))
[docs]class PlateDefinitionError(Exception): message = "Empty values in plate definition and complement=False"
[docs]class PlateNotFoundError(Exception): pass
[docs]class LinkageError(Exception): pass
[docs]class NodeAlreadyExistsError(Exception): message = "Cannot have duplicate nodes"
[docs]class NodeDefinitionError(Exception): pass
[docs]class FactorDefinitionError(Exception): pass
[docs]class FactorAlreadyExistsError(Exception): message = "Cannot have duplicate factors - a new factor object should be created"