2026-02-20 15:31:13 +03:00
|
|
|
package rabbit
|
|
|
|
|
|
|
|
|
|
import "errors"
|
|
|
|
|
|
|
|
|
|
var (
|
2026-04-03 11:20:53 +03:00
|
|
|
errBadAddr = errors.New("bad address")
|
2026-02-20 15:31:13 +03:00
|
|
|
errNoQueue = errors.New("no queue")
|
|
|
|
|
errNotConnected = errors.New("not connected to a server")
|
|
|
|
|
errAlreadyClosed = errors.New("already closed: not connected to the server")
|
|
|
|
|
errShutdown = errors.New("client is shutting down")
|
|
|
|
|
)
|