MaxClientsError is returned when the maximum number of clients has been reached.
| 134 | |
| 135 | // MaxClientsError is returned when the maximum number of clients has been reached. |
| 136 | type MaxClientsError struct { |
| 137 | msg string |
| 138 | } |
| 139 | |
| 140 | func (e *MaxClientsError) Error() string { |
| 141 | return e.msg |
nothing calls this directly
no outgoing calls
no test coverage detected