chore: renamed exception package to exceptions

This commit is contained in:
zaaarf 2023-02-27 16:45:09 +01:00
parent ea69f93028
commit cf537274ee
No known key found for this signature in database
GPG key ID: 82240E075E31FA4C
5 changed files with 5 additions and 5 deletions

View file

@ -1,4 +1,4 @@
package ftbsc.lll.exception;
package ftbsc.lll.exceptions;
/**
* Thrown when the injection of a patch fails.

View file

@ -1,4 +1,4 @@
package ftbsc.lll.exception;
package ftbsc.lll.exceptions;
/**
* Thrown when attempting to build an InstructionSequence between two

View file

@ -1,4 +1,4 @@
package ftbsc.lll.exception;
package ftbsc.lll.exceptions;
/**
* Thrown when failing to find a pattern

View file

@ -1,6 +1,6 @@
package ftbsc.lll.tools;
import ftbsc.lll.exception.InstructionMismatchException;
import ftbsc.lll.exceptions.InstructionMismatchException;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.InsnList;

View file

@ -1,6 +1,6 @@
package ftbsc.lll.tools;
import ftbsc.lll.exception.PatternNotFoundException;
import ftbsc.lll.exceptions.PatternNotFoundException;
import org.objectweb.asm.tree.AbstractInsnNode;
import org.objectweb.asm.tree.MethodNode;