org.xbib.helianthus.common.ContentTooLargeException Maven / Gradle / Ivy
package org.xbib.helianthus.common;
import org.xbib.helianthus.common.util.Exceptions;
public final class ContentTooLargeException extends RuntimeException {
private static final long serialVersionUID = 4901614315474105954L;
private static final ContentTooLargeException INSTANCE =
Exceptions.clearTrace(new ContentTooLargeException());
private ContentTooLargeException() {
}
public static ContentTooLargeException get() {
return Exceptions.isVerbose() ? new ContentTooLargeException() : INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy