aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs')
-rw-r--r--Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs10
1 files changed, 4 insertions, 6 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs b/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
index 2a34ba248..1f1245d5d 100644
--- a/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
+++ b/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs
@@ -3,19 +3,17 @@ 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 ContinuousResponseAbortedException()
- {
-
- }
+ public MessageContainer Container { get; set; }
- public ContinuousResponseAbortedException(String message) : base(message)
+ public ContinuousResponseAbortedException(MessageContainer container, String message) : base(message)
{
-
+ Container = container;
}
}
}