2017-06-30 18:40:25 +03:00
|
|
|
package files
|
|
|
|
|
2017-07-02 03:35:38 +03:00
|
|
|
type CapeNotFoundError struct {
|
2017-06-30 18:40:25 +03:00
|
|
|
Who string
|
|
|
|
}
|
|
|
|
|
2017-07-02 03:35:38 +03:00
|
|
|
func (e CapeNotFoundError) Error() string {
|
|
|
|
return "Cape file not found."
|
2017-06-30 18:40:25 +03:00
|
|
|
}
|