Package org.apache.tika.exception
Class WriteLimitReachedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.xml.sax.SAXException
-
- org.apache.tika.exception.WriteLimitReachedException
-
- All Implemented Interfaces:
java.io.Serializable
public class WriteLimitReachedException extends org.xml.sax.SAXExceptionTransitional class to Tika 2.x. This is not actually thrown by anything, but the static check for isWriteLimitReached works.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WriteLimitReachedException(java.lang.String msg)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisWriteLimitReached(java.lang.Throwable t)Checks whether the given exception (or any of it's root causes) was thrown by this handler as a signal of reaching the write limit.static voidthrowIfWriteLimitReached(java.lang.Exception ex)
-
-
-
Method Detail
-
isWriteLimitReached
public static boolean isWriteLimitReached(java.lang.Throwable t)
Checks whether the given exception (or any of it's root causes) was thrown by this handler as a signal of reaching the write limit.- Parameters:
t- throwable- Returns:
trueif the write limit was reached,falseotherwise- Since:
- Apache Tika 2.0
-
throwIfWriteLimitReached
public static void throwIfWriteLimitReached(java.lang.Exception ex) throws org.xml.sax.SAXException- Throws:
org.xml.sax.SAXException
-
-