// BadGatewayException.cs created with MonoDevelop // User: raul@bgta.net at 11:14 28/05/2008 // using System; namespace gTwitter.Core { /// /// throwed if Twitter Service is down or being upgraded. /// public class BadGatewayException : Exception { /// /// Constructor /// public BadGatewayException() : base("Twitter Service is down or being upgraded") {} /// /// Constructor /// /// /// A . Exception message (). /// public BadGatewayException(string message) : base(message) {} } }