github.com/alloyzeus/go-azfl@v0.0.0-20231220071816-9740126a2d07/errors/placeholder.go (about)

     1  package errors
     2  
     3  const (
     4  	ErrPlaceholder       = constantErrorDescriptor(placeholderErrorText)
     5  	placeholderErrorText = `` +
     6  		`This is a placeholder error. It means that the developer of the ` +
     7  		`routine where you get the error from has not properly thought about ` +
     8  		`what kind of errors should be returned from the routine. You could ` +
     9  		`treat this error as 'internal error' or such, but if you really need ` +
    10  		`to be able to react based on the different kind of errors, do not ` +
    11  		`depend on this error, instead contact the developer of the routine ` +
    12  		`where this error was returned from. Provide your use cases of the ` +
    13  		`errors to them.`
    14  )