aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
blob: 1f1245d5dbd3efbbfe33cd0e738fb725d08d6161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PMR.Common;

namespace Tango.Transport
{
    public class ContinuousResponseAbortedException : Exception
    {
        public MessageContainer Container { get; set; }

        public ContinuousResponseAbortedException(MessageContainer container, String message) : base(message)
        {
            Container = container;
        }
    }
}