asternet/Asterisk.2013/Asterisk.NET/Manager/Exceptions/ManagerException.cs
2014-01-08 14:16:39 +00:00

28 lines
812 B
C#

using System;
namespace AsterNET.Manager
{
/// <summary>
/// An ManagerException is thrown when a Manager Error Response.
/// </summary>
public class ManagerException : Exception
{
/// <summary>
/// Creates a new ManagerException with the given message.
/// </summary>
/// <param name="message">message describing the manager exception</param>
public ManagerException(string message)
: base(message)
{
}
/// <summary>
/// Creates a new ManagerException with the given message and cause.
/// </summary>
/// <param name="message">message describing the manager exception</param>
/// <param name="cause">exception that caused the manager exception</param>
public ManagerException(string message, Exception cause)
: base(message, cause)
{
}
}
}