mirror of
https://github.com/grafana/grafana.git
synced 2025-02-14 01:23:32 -06:00
10 lines
200 B
Go
10 lines
200 B
Go
package serverlock
|
|
|
|
type ServerLockExistsError struct {
|
|
actionName string
|
|
}
|
|
|
|
func (e *ServerLockExistsError) Error() string {
|
|
return "there is already a lock for this actionName: " + e.actionName
|
|
}
|