12345678910111213141516171819202122232425262728293031323334353637383940 |
-
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wayne.Lib.StateEngine
- {
-
-
-
-
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2237:MarkISerializableTypesWithSerializable")]
- [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Design", "CA1032:ImplementStandardExceptionConstructors")]
- public class StateEngineException : Exception
- {
-
-
-
- public StateEngineException() { }
-
-
-
-
- public StateEngineException(string message) : base(message) { }
-
-
-
-
- public StateEngineException(string message, Exception inner) : base(message, inner) { }
- }
- }
|