add duplicate file logging (#1223)

This commit is contained in:
Jason Dove
2023-04-01 09:54:19 -05:00
committed by GitHub
parent 721f0df82a
commit 307940d732
12 changed files with 162 additions and 16 deletions
@@ -0,0 +1,8 @@
namespace ErsatzTV.Core.Errors;
public class MediaFileAlreadyExists : BaseError
{
public MediaFileAlreadyExists() : base("Media file already exists")
{
}
}