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

12 lines
232 B
C#

using System;
namespace PoweredSoft.Storage.Core
{
public class FileDoesNotExistException : Exception
{
public FileDoesNotExistException(string path) : base($"{path} does not exist.")
{
}
}
}