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

     1  /*
     2    - Copyright (c) 2023-present unTill Software Development Group B.V.
     3      @author Michael Saigachenko
     4  */
     5  package iextenginebuiltin
     6  
     7  import (
     8  	"fmt"
     9  
    10  	"github.com/voedger/voedger/pkg/istructs"
    11  )
    12  
    13  func undefinedExtension(app istructs.AppQName, ext string) error {
    14  	return fmt.Errorf("app %v: undefined extension: %v", app, ext)
    15  }