22 lines
420 B
C#
22 lines
420 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using skyscraper5.Dvb;
|
|
|
|
namespace skyscraper8.Dvb.DataBroadcasting
|
|
{
|
|
class DataBroadcastingException : DvbException
|
|
{
|
|
|
|
public DataBroadcastingException(string message) : base(message)
|
|
{
|
|
}
|
|
|
|
public DataBroadcastingException(string message, Exception inner) : base(message, inner)
|
|
{
|
|
}
|
|
}
|
|
}
|