23 lines
375 B
C#
23 lines
375 B
C#
|
using System;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace ANX.Framework.Net
|
|||
|
{
|
|||
|
public class NetworkException : Exception
|
|||
|
{
|
|||
|
public NetworkException()
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public NetworkException(string message)
|
|||
|
: base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
|
|||
|
public NetworkException(string message, Exception innerException)
|
|||
|
: base(message, innerException)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|