Changeset View
Changeset View
Standalone View
Standalone View
src/future/http/status/HTTPFutureResponseStatus.php
| Show All 27 Lines | abstract class HTTPFutureResponseStatus extends Exception { | ||||
| final public function getURI() { | final public function getURI() { | ||||
| return $this->uri; | return $this->uri; | ||||
| } | } | ||||
| abstract public function isError(); | abstract public function isError(); | ||||
| abstract public function isTimeout(); | abstract public function isTimeout(); | ||||
| public function isRedirect() { | |||||
| return false; | |||||
| } | |||||
| abstract protected function getErrorCodeType($code); | abstract protected function getErrorCodeType($code); | ||||
| abstract protected function getErrorCodeDescription($code); | abstract protected function getErrorCodeDescription($code); | ||||
| } | } | ||||