1.0.1.0 Move more common code from OTEMod into this library
This commit is contained in:
parent
fa3961d85b
commit
51043006b5
8 changed files with 360 additions and 2 deletions
|
@ -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");
|
||||
}
|
||||
}
|
Reference in a new issue