Example #1
0
 /**
  * Throw an HttpException with the given data.
  *
  * @param int $code
  * @param string $message
  * @param array $headers
  * @return void 
  * @throws \Symfony\Component\HttpKernel\Exception\HttpException
  * @static 
  */
 public static function abort($code, $message = '', $headers = array())
 {
     //Method inherited from \Illuminate\Foundation\Application
     \October\Rain\Foundation\Application::abort($code, $message, $headers);
 }