Since: 3.0.0
Inheritance: extends Exceptio\Exception
 /**
  * Removes the property with the given name.
  *
  * Removing properties is not allowed.
  *
  * @since 3.0.0
  *
  * @param string $name The name of a property.
  *
  * @return void
  *
  * @throws PropertyManipulationNotAllowedException
  */
 public function offsetUnset($name)
 {
     throw PropertyManipulationNotAllowedException::for_name($name, 'unset');
 }