Implements Drupal\Component\Gettext\PoStreamInterface::getURI().
Exception If the URI is not set.
Overrides PoStreamInterface::getURI
public function getURI() {
if (empty($this->_uri)) {
throw new Exception('No URI set.');
}
return $this->_uri;
}