(fun string)
| 96 | } |
| 97 | |
| 98 | func FunctionNotFound(fun string) *Error { |
| 99 | return &Error{ |
| 100 | Err: NotFound, |
| 101 | Code: "42704", |
| 102 | Message: fmt.Sprintf("function %q", fun), |
| 103 | } |
| 104 | } |
| 105 | |
| 106 | func FunctionNotUnique(fn string) *Error { |
| 107 | return &Error{ |
no outgoing calls
no test coverage detected