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

     1  /*
     2   * Copyright (c) 2021-present unTill Pro, Ltd.
     3   */
     4  
     5  package queryprocessor
     6  
     7  import (
     8  	"errors"
     9  )
    10  
    11  var ErrWrongType = errors.New("wrong type")
    12  var ErrWrongLength = errors.New("wrong length")
    13  var ErrNotFound = errors.New("not found")
    14  var ErrUnexpected = errors.New("unexpected")