aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
blob: 94bb39af035b7987bb1c0fb00632a300b45f597a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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(String message) : base(message)
        {

        }

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