mixed) $options The options for this class */ public function __construct( array $options = array() ) { parent::__construct( $options ); } /** * Sets the option $name to $value. * * @throws ezcBasePropertyNotFoundException * if the property $name is not defined * @throws ezcBaseValueException * if $value is not correct for the property $name * @param string $name The name of the property to set * @param mixed $value The new value of the property * @ignore */ public function __set( $name, $value ) { switch ( $name ) { default: throw new ezcBasePropertyNotFoundException( $name ); } } } ?>