lavkach3
1from enum import Enum2
3
4class MoveErrors(str, Enum):5WRONG_STATUS: str = 'Move is not in CREATED status'6EQUAL_QUANT_ERROR: str = 'Source Quant and Destination Quant cannot be the same'7DEST_QUANT_ERROR: str = "It was not possible to create and find a Stock Dest, perhaps the parameters were set incorrectly"8SOURCE_QUANT_ERROR: str = 'It was not possible to create and find a Stock Source, perhaps the parameters were set incorrectly'