// NotAuthorizedException.cs created with MonoDevelop // User: raul@bgta.net at 11:09 28/05/2008 // using System; namespace gTwitter.Core { /// /// Either you need to provide authentication credentials, /// or the credentials provided aren't valid. /// public class NotAuthorizedException : Exception { /// /// Constructor /// public NotAuthorizedException() : base("Either you need to provide authentication credentials,or the credentials provided aren't valid.") {} /// /// Constructor /// /// /// A . Exception message (). /// public NotAuthorizedException(string message) : base(message) {} } }