Exemplo n.º 1
0
 public NotSupportedOperationException(OperationEnum operation)
     : base($"Operation is not supported. Operation: {operation.GetLiteral()}")
 {
 }
Exemplo n.º 2
0
 public MultipleOperationException(OperationEnum operation)
     : base($"Multiple operations are not allowed. Second operation detected: {operation.GetLiteral()}")
 {
     Operation = operation;
 }