mirror of
https://github.com/elyby/chrly.git
synced 2024-12-23 21:50:03 +05:30
10 lines
139 B
Go
10 lines
139 B
Go
package files
|
|
|
|
type CapeNotFoundError struct {
|
|
Who string
|
|
}
|
|
|
|
func (e CapeNotFoundError) Error() string {
|
|
return "Cape file not found."
|
|
}
|