Source code for simba.errors

[docs]class DimensionError(Exception): """Represents an error involving matrix dimensions."""
[docs]class CoefficientError(Exception): """Represents an error involving transfer function coefficients."""
[docs]class StateSpaceError(Exception): """Represents a miscellaneous error involving `StateSpace`."""
[docs]class ResultError(Exception): """Represents an error involving the result of some calculation."""