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

     1  /*
     2   * Copyright (c) 2021-present Sigma-Soft, Ltd.
     3   * Aleksei Ponomarev
     4   *
     5   * This source code is licensed under the MIT license found in the
     6   * LICENSE file in the root directory of this source tree. 
     7   */
     8  
     9  package in10nmem
    10  
    11  import "errors"
    12  
    13  var (
    14  	ErrChannelExpired      = errors.New("channel time to live expired")
    15  	ErrMetricDoesNotExists = errors.New("metric does not exists")
    16  )