1.0.1.0 Move more common code from OTEMod into this library

This commit is contained in:
Zontreck 2022-10-17 05:33:33 -07:00
parent fa3961d85b
commit 51043006b5
8 changed files with 360 additions and 2 deletions

View file

@ -0,0 +1,12 @@
package dev.zontreck.libzontreck.exceptions;
public class InvalidDeserialization extends Exception
{
public InvalidDeserialization(String error){
super(error);
}
public InvalidDeserialization(){
super("Incorrect information was provided to the deserializer");
}
}