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