This repository has been archived on 2025-03-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
bactdb/errors/species.go
Matthew Dillon d46e721063 Refactor delete handlers
Fixes .
2015-10-13 13:42:19 -07:00

12 lines
336 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")
// ErrSpeciesNotDeleted when not deleted.
ErrSpeciesNotDeleted = errors.New("Species not deleted")
)