Convert remaining doxygen to rst

This commit is contained in:
Nino van Hooff 2020-05-28 17:13:44 +02:00
parent fe779d9501
commit c2c96faf5f
49 changed files with 2163 additions and 1657 deletions

View file

@ -2,21 +2,25 @@
# Cura is released under the terms of the LGPLv3 or higher.
## Raised when trying to perform an operation like add on a stack that does not allow that.
class InvalidOperationError(Exception):
"""Raised when trying to perform an operation like add on a stack that does not allow that."""
pass
## Raised when trying to replace a container with a container that does not have the expected type.
class InvalidContainerError(Exception):
"""Raised when trying to replace a container with a container that does not have the expected type."""
pass
## Raised when trying to add an extruder to a Global stack that already has the maximum number of extruders.
class TooManyExtrudersError(Exception):
"""Raised when trying to add an extruder to a Global stack that already has the maximum number of extruders."""
pass
## Raised when an extruder has no next stack set.
class NoGlobalStackError(Exception):
"""Raised when an extruder has no next stack set."""
pass