headers('www-authenticate'); $this->headers('www-authenticate', $challenge); return $this; } /** * Validate this exception contains everything needed to continue. * * @throws KO7_Exception * @return bool */ public function check() { if ($this->headers('www-authenticate') === NULL) throw new KO7_Exception('A \'www-authenticate\' header must be specified for a HTTP 401 Unauthorized'); return TRUE; } }