Source code for spinn_front_end_common.utilities.exceptions

[docs]class SpinnFrontEndException(Exception): """ Raised when the front end detects an error """ pass
[docs]class RallocException(SpinnFrontEndException): """ Raised when there are not enough routing table entries """ pass
[docs]class ConfigurationException(SpinnFrontEndException): """ Raised when the front end determines a input param is invalid """ pass
[docs]class ExecutableFailedToStartException(SpinnFrontEndException): """ Raised when an executable has not entered the expected state during\ start up """ pass
[docs]class ExecutableFailedToStopException(SpinnFrontEndException): """ Raised when an executable has not entered the expected state during\ execution """ pass
[docs]class ExecutableNotFoundException(SpinnFrontEndException): """ Raised when a specified executable could not be found """ pass
[docs]class BufferableRegionTooSmall(SpinnFrontEndException): """ Raised when the SDRAM space of the region for buffered packets is\ too small to contain any packet at all """ pass
[docs]class BufferedRegionNotPresent(SpinnFrontEndException): """ Raised when trying to issue buffered packets for a region not managed """ pass