Class LinkExtractorParseException
-
- All Implemented Interfaces:
-
java.io.Serializable
public class LinkExtractorParseException extends Exception
Exception used with LinkExtractorParser
- Since:
3.0
-
-
Field Summary
Fields Modifier and Type Field Description public Throwablecausepublic Array<StackTraceElement>stackTrace
-
Constructor Summary
Constructors Constructor Description LinkExtractorParseException()LinkExtractorParseException(String message)LinkExtractorParseException(Throwable cause)LinkExtractorParseException(String message, Throwable cause)LinkExtractorParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
LinkExtractorParseException
LinkExtractorParseException()
-
LinkExtractorParseException
LinkExtractorParseException(String message)
- Parameters:
message- text describing the cause of the exception
-
LinkExtractorParseException
LinkExtractorParseException(Throwable cause)
- Parameters:
cause- of the exception
-
LinkExtractorParseException
LinkExtractorParseException(String message, Throwable cause)
- Parameters:
message- text describing the cause of the exceptioncause- exception, that lead to this exception
-
LinkExtractorParseException
LinkExtractorParseException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
- Parameters:
message- text describing the cause of the exceptioncause- exception, that lead to this exceptionenableSuppression- whether or not suppression is enabledwritableStackTrace- whether or not the stacktrace should be writable
-
-
-
-