using System; namespace AsterNET.FastAGI { /// /// Abstract base class for all AGI specific exceptions. /// public class AGIException : Exception { public AGIException() : base() { } /// /// Creates a new AGIExeption with the given message. /// /// a message decribing the AGIException. public AGIException(string message) : base(message) { } /// /// Creates a new AGIExeption with the given message and cause. /// /// a message decribing the AGIException. /// the throwable that caused this exception to be thrown. public AGIException(string message, Exception cause) : base(message, cause) { } } }