dotnet-storage/PoweredSoft.Storage.Core/FileAlreadyExistsException.cs
2020-03-13 11:18:25 -04:00

12 lines
270 B
C#

using System;
using System.Runtime.Serialization;
namespace PoweredSoft.Storage.Core
{
public class FileAlreadyExistsException : Exception
{
public FileAlreadyExistsException(string path) : base($"{path} already exists..")
{
}
}
}