10 lines
235 B
Go
10 lines
235 B
Go
package errors
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
// ErrSpeciesNotFound when not found.
|
|
ErrSpeciesNotFound = errors.New("Species not found")
|
|
// ErrSpeciesNotUpdated when not updated.
|
|
ErrSpeciesNotUpdated = errors.New("Species not updated")
|
|
)
|