mirror of
https://github.com/Radarr/Radarr
synced 2025-12-26 02:03:53 +01:00
29 lines
625 B
C#
29 lines
625 B
C#
using System;
|
|
using System.Runtime.Serialization;
|
|
|
|
namespace MonoTorrent.BEncoding
|
|
{
|
|
[Serializable]
|
|
public class BEncodingException : Exception
|
|
{
|
|
public BEncodingException()
|
|
: base()
|
|
{
|
|
}
|
|
|
|
public BEncodingException(string message)
|
|
: base(message)
|
|
{
|
|
}
|
|
|
|
public BEncodingException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
|
|
protected BEncodingException(SerializationInfo info, StreamingContext context)
|
|
: base(info, context)
|
|
{
|
|
}
|
|
}
|
|
}
|