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