skyscraper8/skyscraper8/Docsis/DocsisException.cs
feyris-tan ef86554f9a Import
2025-05-12 22:09:16 +02:00

39 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace skyscraper5.Docsis
{
[Serializable]
public class DocsisException : SkyscraperException
{
//
// For guidelines regarding the creation of new exception types, see
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpgenref/html/cpconerrorraisinghandlingguidelines.asp
// and
// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp07192001.asp
//
public DocsisException()
{
}
public DocsisException(string message) : base(message)
{
}
public DocsisException(string message, Exception inner) : base(message, inner)
{
}
protected DocsisException(
SerializationInfo info,
StreamingContext context) : base(info, context)
{
}
}
}