示例#1
0
 public TransferException(TransferErrorType type, string message, Exception innerException = null)
     : base(message, innerException)
 {
     Type = type;
 }
示例#2
0
文件: KfsTransfer.cs 项目: tmbx/kwm
 public KfsTransferError(TransferErrorType type, KfsFileTransfer fileTransfer, String reason)
 {
     Type = type;
     FileTransfer = fileTransfer;
     Reason = reason;
 }
示例#3
0
 public TransferException(TransferErrorType type, string message, Exception innerException = null) 
     : base(message, innerException)
 {
     Type = type;
 }