Browse Source

Add FileExistsException

pull/55/head
Ionite 1 year ago
parent
commit
26510a14c7
No known key found for this signature in database
  1. 13
      StabilityMatrix.Core/Exceptions/FileExistsException.cs

13
StabilityMatrix.Core/Exceptions/FileExistsException.cs

@ -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…
Cancel
Save