ref: 8f7642a6337ea9862f3d8e8ec10f6e30be35829d
pkg/go-git-http/errors.go
1 2 3 4 5 6 7 8 9 10 11 12 13 14
package githttp import ( "fmt" ) type ErrorNoAccess struct { // Path to directory of repo accessed Dir string } func (e *ErrorNoAccess) Error() string { return fmt.Sprintf("Could not access repo at '%s'", e.Dir) }