40 lines
708 B
Go
40 lines
708 B
Go
package server
|
|
|
|
type suspendedError struct {
|
|
}
|
|
|
|
func (e *suspendedError) Error() string {
|
|
return "server is currently in a suspended state"
|
|
}
|
|
|
|
func IsSuspendedError(err error) bool {
|
|
_, ok := err.(*suspendedError)
|
|
|
|
return ok
|
|
}
|
|
|
|
type crashTooFrequent struct {
|
|
}
|
|
|
|
func (e *crashTooFrequent) Error() string {
|
|
return "server has crashed too soon after the last detected crash"
|
|
}
|
|
|
|
func IsTooFrequentCrashError(err error) bool {
|
|
_, ok := err.(*crashTooFrequent)
|
|
|
|
return ok
|
|
}
|
|
|
|
type serverDoesNotExist struct {
|
|
}
|
|
|
|
func (e *serverDoesNotExist) Error() string {
|
|
return "server does not exist on remote system"
|
|
}
|
|
|
|
func IsServerDoesNotExistError(err error) bool {
|
|
_, ok := err.(*serverDoesNotExist)
|
|
|
|
return ok
|
|
} |