|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using System;
- namespace GamecraftModdingAPI.Events
- {
- public class EventException : GamecraftModdingAPIException
- {
- public EventException()
- {
- }
-
- public EventException(string message) : base(message)
- {
- }
-
- public EventException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
-
- public class EventNotFoundException : EventException
- {
- public EventNotFoundException()
- {
- }
-
- public EventNotFoundException(string message) : base(message)
- {
- }
- }
-
- public class EventAlreadyExistsException : EventException
- {
- public EventAlreadyExistsException()
- {
- }
-
- public EventAlreadyExistsException(string message) : base(message)
- {
- }
- }
-
- public class EventRuntimeException : EventException
- {
- public EventRuntimeException()
- {
- }
-
- public EventRuntimeException(string message) : base(message)
- {
- }
-
- public EventRuntimeException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
- }
|