// NotModifiedException.cs created with MonoDevelop
// User: raul@bgta.net at 10:28 30/05/2008
//
using System;
namespace gTwitter.Core
{
///
/// There was no new data to return.
///
public class NotModifiedException : Exception
{
///
/// Constructor
///
public NotModifiedException() : base("There was no new data to return")
{}
///
/// Constructor
///
///
/// A . Exception message ().
///
public NotModifiedException(string message) : base(message)
{}
}
}