Implements Drupal\Component\Gettext\PoStreamInterface::close().
\Exception If the stream is not open.
Overrides PoStreamInterface::close
public function close() { if ($this->fd) { fclose($this->fd); } else { throw new \Exception('Cannot close stream that is not open.'); } }