1
1
mirror of https://github.com/OJ/gobuster.git synced 2025-07-29 09:14:24 +02:00
gobuster/libgobuster/errors.go
2025-04-01 14:43:51 +02:00

10 lines
337 B
Go

package libgobuster
import "errors"
var (
ErrTimeout = errors.New("timeout occurred during the request")
ErrEOF = errors.New("server closed connection without sending any data back. Maybe you are connecting via https to on http port or vice versa?")
ErrConnectionRefused = errors.New("connection refused")
)