|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- using System;
-
- using GamecraftModdingAPI;
-
- namespace GamecraftModdingAPI.Blocks
- {
- public class BlockException : GamecraftModdingAPIException
- {
- public BlockException()
- {
- }
-
- public BlockException(System.String message) : base(message)
- {
- }
-
- public BlockException(System.String message, Exception innerException) : base(message, innerException)
- {
- }
- }
-
- public class BlockTypeException : BlockException
- {
- public BlockTypeException()
- {
- }
-
- public BlockTypeException(string message) : base(message)
- {
- }
- }
-
- public class BlockSpecializationException : BlockException
- {
- public BlockSpecializationException()
- {
- }
-
- public BlockSpecializationException(string message) : base(message)
- {
- }
- }
-
- public class BlockDoesNotExistException : BlockException
- {
- public BlockDoesNotExistException()
- {
- }
-
- public BlockDoesNotExistException(string message) : base(message)
- {
- }
- }
- }
|