12345678910111213141516171819202122232425262728 |
- using System;
- namespace Wayne.Lib.StateEngine
- {
-
-
-
-
- public class ExceptionTransition : Transition
- {
-
-
-
- public Exception Exception { get; set; }
-
-
-
-
-
-
- public ExceptionTransition(State sender, object type, Exception exception)
- : base(sender, type)
- {
- Exception = exception;
- }
- }
- }
|