com.nkasenides.athlos.exception.ChunkOutOfBoundsException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of athlos-core Show documentation
Show all versions of athlos-core Show documentation
An MMOG development framework.
package com.nkasenides.athlos.exception;
public class ChunkOutOfBoundsException extends RuntimeException {
public ChunkOutOfBoundsException(int row, int col) {
super("The cell (" + row + "," + col + ") is out of bounds of the world.");
}
}