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

loadObjectStateGroupDataByIdentifier() public method

Loads data for an object state group by identifier.
public loadObjectStateGroupDataByIdentifier ( string $identifier ) : array
$identifier string
return array
    public function loadObjectStateGroupDataByIdentifier($identifier)
    {
        try {
            return $this->innerGateway->loadObjectStateGroupDataByIdentifier($identifier);
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }