Пример #1
0
 /**
  * Fetches the defined 409 path for the current route.
  *
  * @return string
  */
 public static function get409Path()
 {
     // TODO: Get 409 from default route
     if (!isset(self::$current_route)) {
         throw new vB_Exception_Router('409 path requested for current route but no current route has been resolved.');
     }
     return self::$current_route->get409Path();
 }