2020-03-02 12:43:44 +00:00
|
|
|
package instance
|
|
|
|
|
|
|
|
|
|
import (
|
2025-05-23 01:36:09 -04:00
|
|
|
"errors"
|
2020-03-02 12:43:44 +00:00
|
|
|
)
|
|
|
|
|
|
2022-06-23 18:37:06 +01:00
|
|
|
// ErrNotImplemented is the "Not implemented" error.
|
2025-05-23 01:36:09 -04:00
|
|
|
var ErrNotImplemented = errors.New("Not implemented")
|