blob: 3824be9ee20278891e7daaa2a2793abfb8d6e50c [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);
}
}