Exemplo n.º 1
0
 public RemoteException(XElement info)
     : base("Remote exception: " + info.GetTextValue("message"))
 {
     this.remoteType = info.GetTextValue("type");
     this.remoteMessage = info.GetTextValue("message");
     this.remoteGuid = info.GetTextValue("guid");
     this.remoteTrace = info.GetTextValue("trace");
 }