|
1234567891011121314151617181920212223242526272829 |
- using System;
- namespace GamecraftModdingAPI.Players
- {
- public class PlayerException : GamecraftModdingAPIException
- {
- public PlayerException()
- {
- }
-
- public PlayerException(string message) : base(message)
- {
- }
-
- public PlayerException(string message, Exception innerException) : base(message, innerException)
- {
- }
- }
-
- public class PlayerNotFoundException : PlayerException
- {
- public PlayerNotFoundException()
- {
- }
-
- public PlayerNotFoundException(string message) : base(message)
- {
- }
- }
- }
|