7 lines
176 B
Go
7 lines
176 B
Go
|
|
package errors
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
// ErrNotImplemented is returned when an RPC method has not been implemented yet.
|
||
|
|
var ErrNotImplemented = errors.New("method not implemented")
|