blob: cb10360a52b0ad7e3d8b467274d397a8a102017b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.Transport
{
public class TransporterDisconnectedException : Exception
{
public TransporterDisconnectedException(String message) : base(message)
{
}
}
}
|