1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- using System.Xml.Linq;
- namespace HTEXLib.COMM
- {
- public class TransException : Exception
- {
- public XElement node { get; set; }
- public TransException(XElement node) : base()
- {
- this. node = node;
- }
- public TransException(XElement node,string message):base(message) {
- this.node = node;
- }
- public TransException(XElement node,string message, Exception innerException) : base(message, innerException)
- {
- this.node = node;
- }
- }
- }
|