23 lines
464 B
23 lines
464 B
#if !NET20
|
|
|
|
using System;
|
|
|
|
namespace Apewer.WebSocket
|
|
{
|
|
internal class ConnectionNotAvailableException : Exception
|
|
{
|
|
public ConnectionNotAvailableException() : base()
|
|
{
|
|
}
|
|
|
|
public ConnectionNotAvailableException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public ConnectionNotAvailableException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif
|
|
|