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

deleteObjectStateGroup() public method

Deletes the object state group identified by $groupId.
public deleteObjectStateGroup ( mixed $groupId )
$groupId mixed
    public function deleteObjectStateGroup($groupId)
    {
        try {
            return $this->innerGateway->deleteObjectStateGroup($groupId);
        } catch (DBALException $e) {
            throw new RuntimeException('Database error', 0, $e);
        } catch (PDOException $e) {
            throw new RuntimeException('Database error', 0, $e);
        }
    }