fix
[m6w6/pq-gateway] / lib / pq / Gateway / Rowset.php
index 7c0a3c23395f56428d9c1506dfdc5f86ef089459..c0a337088ee6da3391c3ca53d6326367ec1692c4 100644 (file)
@@ -206,7 +206,7 @@ class Rowset implements \SeekableIterator, \Countable, \JsonSerializable
         */
        function current() {
                if (!$this->valid()) {
-                       throw new OutOfBoundsException("Invalid row index {$this->index}");
+                       throw new \OutOfBoundsException("Invalid row index {$this->index}");
                }
                return $this->rows[$this->index];
        }