-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy patherr.go
38 lines (30 loc) · 821 Bytes
/
err.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
package fss3
import (
"errors"
"fmt"
)
// ErrNoFileInfo is returned when a file info is not found.
var ErrNoFileInfo = errors.New("fileInfo not found")
// ErrInvalidHeader is returned when an invalid path is provided.
type ErrInvalidHeader struct {
name string
value string
err error
}
func (e ErrInvalidHeader) Error() string {
return fmt.Sprintf("invalid header key: %s, value: %s: %s", e.name, e.value, e.err)
}
// ErrNotDirectory is returned when a path is not a directory.
type ErrNotDirectory struct {
name string
}
func (e ErrNotDirectory) Error() string {
return fmt.Sprintf("'%s' not a directory", e.name)
}
// ErrNotEmpty is returned when a directory is not empty.
type ErrNotEmpty struct {
name string
}
func (e ErrNotEmpty) Error() string {
return fmt.Sprintf("'%s' not empty", e.name)
}