(typ string)
| 88 | } |
| 89 | |
| 90 | func TypeNotFound(typ string) *Error { |
| 91 | return &Error{ |
| 92 | Err: NotFound, |
| 93 | Code: "42704", |
| 94 | Message: fmt.Sprintf("type %q", typ), |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | func FunctionNotFound(fun string) *Error { |
| 99 | return &Error{ |
no outgoing calls