eZ\Publish\Core\Persistence\Legacy\Content\ObjectState\Gateway\ExceptionConversion::loadObjectStateGroupListData PHP Method

loadObjectStateGroupListData() public method

Loads data for all object state groups, filtered by $offset and $limit.
public loadObjectStateGroupListData ( integer $offset, integer $limit ) : array
$offset integer
$limit integer
return array
    public function loadObjectStateGroupListData($offset, $limit)
    {
        try {
            return $this->innerGateway->loadObjectStateGroupListData($offset, $limit);
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }