diff --git a/src/main/java/io/github/simplexdev/simplexcore/structures/PasteType.java b/src/main/java/io/github/simplexdev/simplexcore/structures/PasteType.java new file mode 100644 index 0000000..1ec4955 --- /dev/null +++ b/src/main/java/io/github/simplexdev/simplexcore/structures/PasteType.java @@ -0,0 +1,7 @@ +package io.github.simplexdev.simplexcore.structures; + + +public enum PasteType { + BLOCKBYBLOCKASYNC, + INSTANTASYNC +} diff --git a/src/main/java/io/github/simplexdev/simplexcore/structures/exception/SchematicNotLoaded.java b/src/main/java/io/github/simplexdev/simplexcore/structures/exception/SchematicNotLoaded.java new file mode 100644 index 0000000..1612a28 --- /dev/null +++ b/src/main/java/io/github/simplexdev/simplexcore/structures/exception/SchematicNotLoaded.java @@ -0,0 +1,8 @@ +package io.github.simplexdev.simplexcore.structures.exception; + +public class SchematicNotLoaded extends Exception { + + public SchematicNotLoaded(String msg) { + super(msg); + } +}