CheckHardDeletableExists does the same as Exists for a hard deletable item but only returns the error value; thereby
being a handy convenience function.
type Exister interface {
// Exists returns nil if the object with the given ID exists;// otherwise an error is returned in case the given ID doesn't exists or any// other unknown issue occurred
CheckExists(ctx context.Context, id string) error
}