You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
624 B
29 lines
624 B
11 years ago
|
using System;
|
||
|
|
||
|
namespace MonoTorrent
|
||
|
{
|
||
|
[Serializable]
|
||
|
public class TorrentException : Exception
|
||
|
{
|
||
|
public TorrentException()
|
||
|
: base()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public TorrentException(string message)
|
||
|
: base(message)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public TorrentException(string message, Exception innerException)
|
||
|
: base(message, innerException)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public TorrentException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context)
|
||
|
: base(info, context)
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|