12 lines
325 B
Go
12 lines
325 B
Go
|
|
package rabbit
|
||
|
|
|
||
|
|
import "errors"
|
||
|
|
|
||
|
|
var (
|
||
|
|
errNoAddr = errors.New("no address")
|
||
|
|
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")
|
||
|
|
)
|