Simplify error message

This commit is contained in:
Hanno Braun 2024-05-24 22:04:34 +02:00
parent 10b80ea5eb
commit d612c0dba3

View File

@ -69,7 +69,7 @@ pub enum SolidValidationError {
},
/// Object within solid referenced by more than one other object
#[error("Object within solid referenced by more than one other Object")]
#[error(transparent)]
ObjectNotExclusivelyOwned(#[from] ObjectNotExclusivelyOwned),
}