mirror of https://github.com/grafana/grafana.git
12 lines
211 B
Go
12 lines
211 B
Go
|
|
package api
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
type OrganizationNotFoundError struct {
|
||
|
|
OrgID int64
|
||
|
|
}
|
||
|
|
|
||
|
|
func (e *OrganizationNotFoundError) Error() string {
|
||
|
|
return fmt.Sprintf("unable to find organization with ID '%d'", e.OrgID)
|
||
|
|
}
|