Files
nats-server/server/errors.go
Derek Collison d21e2caf8c golint updates
2013-10-13 09:52:51 -07:00

14 lines
351 B
Go

// Copyright 2012 Apcera Inc. All rights reserved.
package server
import "errors"
var (
// ErrConnectionClosed represents error condition on a closed connection.
ErrConnectionClosed = errors.New("Connection closed")
// ErrAuthorization represents error condition on failed authorization.
ErrAuthorization = errors.New("Authorization Error")
)