// InternalServerException.cs created with MonoDevelop
// User: raul@bgta.net at 11:13 28/05/2008
//
using System;
namespace gTwitter.Core
{
///
/// Server does something wrong
///
public class InternalServerException : Exception
{
///
/// Constructor
///
public InternalServerException() : base("Server does something wrong")
{}
///
/// Constructor
///
///
/// A . Exception message ().
///
public InternalServerException(string message) : base(message)
{}
}
}