github.com/voedger/voedger@v0.0.0-20240520144910-273e84102129/pkg/istructsmem/internal/containers/errors.go (about)

     1  /*
     2   * Copyright (c) 2021-present Sigma-Soft, Ltd.
     3   * @author: Nikolay Nikitin
     4   */
     5  
     6  package containers
     7  
     8  import (
     9  	"errors"
    10  	"fmt"
    11  )
    12  
    13  var ErrContainerIDsExceeds = fmt.Errorf("the maximum number of container identifiers (%d) has been exceeded", MaxAvailableContainerID)
    14  
    15  var ErrContainerIDNotFound = errors.New("container ID not found")
    16  
    17  var ErrWrongContainerID = errors.New("wrong container ID")
    18  
    19  var ErrContainerNotFound = errors.New("container not found")