/*===============================================================================
* Event.cs
*
* Change history
* When Who Comment
* ---------- ------ ----------------------------------
* 2005-03-02 RMa Created
*
---------------------------------------------------------------------------------*/
using System;
using System.Collections.Generic;
using System.Text;
namespace Wayne.Lib.StateEngine
{
///
/// Wayne.Lib.StateEngine exception is a general exception that can be thrown from the
/// state engine library.
///
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")]
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")]
public class StateEngineException : Exception
{
///
/// Initializes a new instance of the StateEngineException class.
///
public StateEngineException() { }
///
/// Initializes a new instance of the StateEngineException class.
///
public StateEngineException(string message) : base(message) { }
///
/// Initializes a new instance of the StateEngineException class.
///
public StateEngineException(string message, Exception inner) : base(message, inner) { }
}
}