(sch string)
| 72 | } |
| 73 | |
| 74 | func SchemaNotFound(sch string) *Error { |
| 75 | return &Error{ |
| 76 | Err: NotFound, |
| 77 | Code: "3F000", |
| 78 | Message: fmt.Sprintf("schema %q", sch), |
| 79 | } |
| 80 | } |
| 81 | |
| 82 | func TypeExists(typ string) *Error { |
| 83 | return &Error{ |
no outgoing calls