8 lines
130 B
Go
8 lines
130 B
Go
|
package storage
|
||
|
|
||
|
type NotImplementedError struct{}
|
||
|
|
||
|
func (n NotImplementedError) Error() string {
|
||
|
return "Not implemented yet"
|
||
|
}
|