You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MethodErrors convey this same information, with the bonus of showing "closest candidates"
Since all the functions here belong to the DBInterface namespace (we're not e.g. adding methods to Base functions), the MethodErrors should be particularly helpful
Furthermore, in a few cases the message in the NotImplementedError may just be incorrect
e.g. in
connect(T, args...; kw...) =throw(NotImplementedError("`DBInterface.connect` not implemented for `$T`"))
there may be methods for T, but not for the given args
MethodErrors
convey this same information, with the bonus of showing "closest candidates"DBInterface
namespace (we're not e.g. adding methods to Base functions), theMethodErrors
should be particularly helpfulNotImplementedError
may just be incorrectT
, but not for the givenargs
The text was updated successfully, but these errors were encountered: