public function Response::isServerError

Same name in this branch

Was there a server side error?

@api

Return value

Boolean

File

drupal/core/vendor/symfony/http-foundation/Symfony/Component/HttpFoundation/Response.php, line 1082

Class

Response
Response represents an HTTP response.

Namespace

Symfony\Component\HttpFoundation

Code

public function isServerError() {
  return $this->statusCode >= 500 && $this->statusCode < 600;
}