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