// NotFoundException.cs created with MonoDevelop
// User: raul@bgta.net at 11:12 28/05/2008
//
using System;
namespace gTwitter.Core
{
///
/// either you're requesting an invalid URI or
/// the resource in question doesn't exist (ex: no such user)
///
public class NotFoundException : Exception
{
///
/// Constructor
///
public NotFoundException() : base("Either you're requesting an invalid URI or the resource in question doesn't exist (ex: no such user).")
{}
///
/// Constructor
///
///
/// A . Exception message ().
///
public NotFoundException(string message) : base(message)
{}
}
}