-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patherrors.go
49 lines (39 loc) · 803 Bytes
/
errors.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// QCLauncher by syncore <[email protected]> 2017
// https://github.com/syncore/qclauncher
package qclauncher
type hashMismatchError struct {
emsg string
}
type alreadyRunningError struct {
emsg string
}
type authFailedError struct {
emsg string
}
func (e *hashMismatchError) Error() string {
return e.emsg
}
func (e *alreadyRunningError) Error() string {
return e.emsg
}
func (e *authFailedError) Error() string {
return e.emsg
}
func IsErrAlreadyRunning(err error) bool {
if _, ok := err.(*alreadyRunningError); ok {
return true
}
return false
}
func IsErrHashMismatch(err error) bool {
if _, ok := err.(*hashMismatchError); ok {
return true
}
return false
}
func IsErrAuthFailed(err error) bool {
if _, ok := err.(*authFailedError); ok {
return true
}
return false
}