blob: 3b3dfb71ddc67d3950ff44dd278e35ad98fe9889 [file] [log] [blame] [raw]
package net.querz.nbt;
/**
* Exception indicating that the maximum (de-)serialization depth has been reached.
*/
@SuppressWarnings("serial")
public class MaxDepthReachedException extends RuntimeException {
public MaxDepthReachedException(String msg) {
super(msg);
}
}