Publish changes to Library API
This commit is contained in:
parent
b01d45f9ab
commit
7e5c273f4d
6 changed files with 134 additions and 30 deletions
|
@ -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);
|
||||
}
|
||||
}
|
Reference in a new issue