dotnet-storage/OpenHarbor.Storage.Abstractions/FileDoesNotExistException.cs

3 lines
138 B
C#
Raw Normal View History

namespace OpenHarbor.Storage.Abstractions;
public class FileDoesNotExistException(string path) : Exception($"{path} does not exist.");