1234567891011121314151617181920212223242526272829303132333435363738 |
-
- using System;
- 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) { }
- }
- }
|