using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
|
namespace IStation.DataDockingApi
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public class Exception : System.Exception
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public Exception() : base() { }
|
|
/// <summary>
|
///
|
/// </summary>
|
/// <param name="message"></param>
|
public Exception(string message) : base(message) { }
|
|
/// <summary>
|
///
|
/// </summary>
|
/// <param name="message"></param>
|
/// <param name="innerException"></param>
|
public Exception(string message, System.Exception innerException) : base(message, innerException) { }
|
}
|
}
|
|