1234567891011121314151617181920212223242526272829 |
- using System;
- namespace Wayne.Lib
- {
-
-
-
-
- public class ObjectNotReservedException : Exception
- {
- #region Construction
-
-
-
- public ObjectNotReservedException() { }
-
-
-
- public ObjectNotReservedException(string message) : base(message) { }
-
-
-
- public ObjectNotReservedException(string message, Exception inner) : base(message, inner) { }
- #endregion
- }
- }
|