SoXX
5f9ace9bd3
All checks were successful
Gitea Build Check / Build (push) Successful in 11m38s
Signed-off-by: SoXX <soxx@fenpa.ws>
19 lines
482 B
Go
19 lines
482 B
Go
package error
|
|
|
|
import "fmt"
|
|
|
|
const (
|
|
AnthroveUserIDIsEmpty = "anthrovePostID cannot be empty"
|
|
AnthroveUserIDToShort = "anthrovePostID needs to be 25 characters long"
|
|
AnthroveSourceIDEmpty = "anthroveSourceID cannot be empty"
|
|
AnthroveSourceIDToShort = "anthroveSourceID needs to be 25 characters long"
|
|
)
|
|
|
|
type EntityValidationFailed struct {
|
|
Reason string
|
|
}
|
|
|
|
func (e EntityValidationFailed) Error() string {
|
|
return fmt.Sprintf("Entity validation failed: %s", e.Reason)
|
|
}
|