Uh oh!

You found an error!
Message: Missing argument(s)!
File: /var/www/html2/duke-energycenter.com/inc/core/controllers/BaseController.php:96
Request: http://www.duke-energycenter.com/events/month/May/
Backtrace:
  1. /var/www/html2/duke-energycenter.com/inc/core/controllers/BaseController.php line:96
    /var/www/html2/duke-energycenter.com/inc/core/controllers/BaseController.php()
     91             $i++;
     92         }
     93 
     94         // if we're missing a required parameter, issue a 404
     95         if (!$has_everything) {
     96             Error::exception(new \Exception("Missing argument(s)!"));
     97         }
     98 
     99         // invoke the controller method, pass in whatever variables we have
    100         if (count($args) > 0) {
    101             call_user_func_array(array($this, $action), $args);
    
  2. /var/www/html2/duke-energycenter.com/inc/core/futurepoint/error/Error.php line:419
    futurepoint\error\Error->backtrace()
    414             'line' => $e->getLine(),
    415             'function' => $e->getFile(),
    416             'source' => self::source($e->getFile(), $e->getLine())
    417         ]];
    418 
    419         foreach (self::backtrace() as $item) {
    420             if (isset($item['file']) && isset($item['line'])) {
    421                 $item['source'] = self::source($item['file'], $item['line']);
    422                 $items[] = $item;
    423             }
    424         }
    
  3. /var/www/html2/duke-energycenter.com/inc/core/futurepoint/error/Error.php line:258
    futurepoint\error\Error->getExceptionTemplate()
    253                 $template = self::getGenericTemplate();
    254             } else {
    255                 if (inAdmin() && Auth::isAdminLoggedIn()) {
    256                     $template = self::getAdminExceptionTemplate($e);
    257                 } else {
    258                     $template = self::getExceptionTemplate($e);
    259                 }
    260             }
    261 
    262             $response = new PageTemplate($template);
    263             $response->setCode(400);
    
  4. /var/www/html2/duke-energycenter.com/inc/core/controllers/BaseController.php line:96
    futurepoint\error\Error->exception()
     91             $i++;
     92         }
     93 
     94         // if we're missing a required parameter, issue a 404
     95         if (!$has_everything) {
     96             Error::exception(new \Exception("Missing argument(s)!"));
     97         }
     98 
     99         // invoke the controller method, pass in whatever variables we have
    100         if (count($args) > 0) {
    101             call_user_func_array(array($this, $action), $args);
    
  5. /var/www/html2/duke-energycenter.com/inc/core/futurepoint/base/Router.php line:173
    Controller\BaseController->run()
    168             $_GET[$getVarParts[0]] = (count($getVarParts) > 1) ? $getVarParts[1] : null;
    169         }
    170 
    171         /** @var \Controller\BaseController $controller */
    172         $controller = new $controllerName();
    173         return $controller->run($methodName, $args);
    174     }
    175 
    176     /**
    177      * Attempts to infer the route from the current URL
    178      * And sets the values by reference for use in the main Route function
    
  6. /var/www/html2/duke-energycenter.com/inc/core/futurepoint/base/Router.php line:72
    futurepoint\base\Router->callControllerMethod()
    67         try {
    68             $correctRoute = null;
    69 
    70             // Check if the base controller method works
    71             if ($correctRoute = static::checkControllerMethod($route, $folder)) {
    72                 static::callControllerMethod($correctRoute->controller, $correctRoute->method, $correctRoute->arguments, $getVars, $folder);
    73             // Otherwise, check if the controller is translated
    74             } elseif ($correctRoute = static::checkTranslationControllerMethod($route, $folder)) {
    75                 static::callControllerMethod($correctRoute->controller, $correctRoute->method, $correctRoute->arguments, $getVars, $folder);
    76             // Otherwise, check if this is a valid friendly url route
    77             } elseif($correctRoute = static::checkForFriendlyURL($route)) {