25 lines
411 B
C#
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)
|
|
{
|
|
}
|
|
}
|
|
}
|