dotnet-storage/PoweredSoft.Storage.Core/FileDoesNotExistException.cs

12 lines
232 B
C#
Raw Permalink Normal View History

2020-03-13 11:18:25 -04:00
using System;
namespace PoweredSoft.Storage.Core
{
public class FileDoesNotExistException : Exception
{
public FileDoesNotExistException(string path) : base($"{path} does not exist.")
{
}
}
}