Ionite
1 year ago
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
|||||||
|
namespace StabilityMatrix.Core.Exceptions; |
||||||
|
|
||||||
|
public class FileTransferExistsException : IOException |
||||||
|
{ |
||||||
|
public string SourceFile { get; } |
||||||
|
public string DestinationFile { get; } |
||||||
|
|
||||||
|
public FileTransferExistsException(string source, string destination) |
||||||
|
{ |
||||||
|
SourceFile = source; |
||||||
|
DestinationFile = destination; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue