Publish changes to Library API

This commit is contained in:
Aria 2023-02-22 01:22:00 -07:00
parent b01d45f9ab
commit 7e5c273f4d
6 changed files with 134 additions and 30 deletions

View file

@ -0,0 +1,12 @@
package dev.zontreck.libzontreck.exceptions;
/**
* Thrown when requesting a world position's level on the client when in the wrong dimension.
* @see WorldPosition
*/
public class InvalidSideException extends Exception
{
public InvalidSideException(String msg){
super(msg);
}
}