asternet/Asterisk.2013/Asterisk.NET/Manager/Exceptions/ManagerException.cs

28 lines
812 B
C#
Raw Normal View History

using System;
2014-01-08 14:16:39 +00:00
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)
{
}
}
}