skyscraper8/skyscraper8/Atsc/AtscException.cs
feyris-tan 4fe40e082a
All checks were successful
🚀 Pack skyscraper8 / make-zip (push) Successful in 1m25s
The Atsc3Receiver.cs now understands ATSC3 FDTs.
2026-06-08 20:52:21 +02:00

25 lines
411 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using skyscraper5;
namespace skyscraper8.Atsc
{
public class AtscException : SkyscraperException
{
public AtscException()
{
}
public AtscException(string message) : base(message)
{
}
public AtscException(string message, Exception inner) : base(message, inner)
{
}
}
}