// ForbiddenException.cs created with MonoDevelop // User: raul@bgta.net at 11:11 28/05/2008 // using System; namespace gTwitter.Core { /// /// Twitter service understand your request, but are refusing to fulfill it /// public class ForbiddenException : Exception { /// /// Constructor /// public ForbiddenException() : base("Twitter service understand your request, but are refusing to fulfill it") {} /// /// Constructor /// /// /// A . Exception message (). /// public ForbiddenException(string message) : base(message) {} } }