コード例 #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;
 }