This file re-implements the unimplemented primitives from the original pgerror package, using the primitives from the errors library instead. New constructs an unimplemented feature error.
(feature, msg string)
| 32 | |
| 33 | // New constructs an unimplemented feature error. |
| 34 | func New(feature, msg string) error { |
| 35 | return unimplementedInternal(1 /*depth*/, 0 /*issue*/, feature /*detail*/, false /*format*/, msg) |
| 36 | } |
| 37 | |
| 38 | // Newf constructs an unimplemented feature error. |
| 39 | // The message is formatted. |
no test coverage detected