* re-namespace * optimize usings * more usings * more of the same * more implicit/global usings * cleanup all usings * minor fixes
8 lines
215 B
C#
8 lines
215 B
C#
namespace ErsatzTV.Core.Errors;
|
|
|
|
public class PlayoutItemDoesNotExistOnDisk : BaseError
|
|
{
|
|
public PlayoutItemDoesNotExistOnDisk(string path) : base($"Playout item does not exist on disk\n{path}")
|
|
{
|
|
}
|
|
} |