mirror of
https://github.com/gogrlx/nats-server.git
synced 2026-04-02 03:38:42 -07:00
11 lines
205 B
Go
11 lines
205 B
Go
// Copyright 2012 Apcera Inc. All rights reserved.
|
|
|
|
package server
|
|
|
|
import "errors"
|
|
|
|
var (
|
|
ErrConnectionClosed = errors.New("Connection closed")
|
|
ErrAuthorization = errors.New("Authorization Error")
|
|
)
|