C# Class RabbitMQ.Client.Exceptions.ChannelAllocationException

Thrown when a SessionManager cannot allocate a new channel number, or the requested channel number is already in use.
Inheritance: System.Exception
Show file Open project: rabbitmq/rabbitmq-dotnet-client

Public Methods

Method Description
ChannelAllocationException ( ) : System

Indicates that there are no more free channels.

ChannelAllocationException ( int channel ) : System

Indicates that the specified channel is in use

Method Details

ChannelAllocationException() public method

Indicates that there are no more free channels.
public ChannelAllocationException ( ) : System
return System

ChannelAllocationException() public method

Indicates that the specified channel is in use
public ChannelAllocationException ( int channel ) : System
channel int The requested channel number
return System