using System;
namespace Wayne.Lib
{
///
/// The ObjectNotReservedException is thrown when trying to access an object in a way that
/// requires reservation, or if a Reserved interface is used after it has been unreserved.
///
public class ObjectNotReservedException : Exception
{
#region Construction
///
/// Initializes a new instance of the class.
///
public ObjectNotReservedException() { }
///
/// Initializes a new instance of the class.
///
public ObjectNotReservedException(string message) : base(message) { }
///
/// Initializes a new instance of the class.
///
public ObjectNotReservedException(string message, Exception inner) : base(message, inner) { }
#endregion
}
}