/**
  * Constructs a new ezcUrlNoConfigurationException.
  *
  * @param string $param
  */
 public function __construct($param)
 {
     $message = "The parameter '{$param}' could not be set/get because the url doesn't have a configuration defined.";
     parent::__construct($message);
 }
 /**
  * Constructs a new ezcInvalidParameterException.
  *
  * @param string $param
  */
 public function __construct($param)
 {
     $message = "The parameter '{$param}' could not be set/get because it is not defined in the configuration.";
     parent::__construct($message);
 }
 /**
  * Constructs a new ezcUrlNotRegisteredException.
  *
  * @param string $name
  */
 public function __construct($name)
 {
     $message = "The url '{$name}' is not registered.";
     parent::__construct($message);
 }