diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs b/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs index 94bb39af0..2a34ba248 100644 --- a/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs +++ b/Software/Visual_Studio/Tango.Transport/ContinuousResponseAbortedException.cs @@ -3,22 +3,19 @@ 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() { } - public ContinuousResponseAbortedException(MessageContainer container, String message) : this(message) + public ContinuousResponseAbortedException(String message) : base(message) { - Container = container; + } } } |
