isNotFound() public method

Is the response a not found error?
public isNotFound ( ) : boolean
return boolean
 public function testIsNotFound()
 {
     $response = new Response('', 404);
     $this->assertTrue($response->isNotFound());
     $response = new Response('', 200);
     $this->assertFalse($response->isNotFound());
 }