pages-server/errors/tree.go
2024-03-26 13:41:12 -05:00

12 lines
231 B
Go

package errors
type ErrorCouldNotGetTree struct{}
func (e ErrorCouldNotGetTree) Error() string {
return "could not get repository tree"
}
func NewErrorCouldNotGetTree() *ErrorCouldNotGetTree {
return &ErrorCouldNotGetTree{}
}