9 lines
216 B
C#
9 lines
216 B
C#
namespace ErsatzTV.Core.Errors;
|
|
|
|
public class PlayoutItemDoesNotExistOnDisk : BaseError
|
|
{
|
|
public PlayoutItemDoesNotExistOnDisk(string path) : base($"Playout item does not exist on disk\n{path}")
|
|
{
|
|
}
|
|
}
|