Package ai.preferred.venom
Class FatalHandlerException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- ai.preferred.venom.FatalHandlerException
-
- All Implemented Interfaces:
java.io.Serializable
public class FatalHandlerException extends java.lang.RuntimeExceptionThis class defines fatal runtime exception forHandler. IfHandler.handle(ai.preferred.venom.request.Request, ai.preferred.venom.response.VResponse, ai.preferred.venom.job.Scheduler, Session, Worker)encounters unexpected situation, it can signalCrawlerto stop execution by throwing this exception.- Author:
- Maksim Tkachenko
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description FatalHandlerException()Constructs a new fatal handler exception withnullas its detail message.FatalHandlerException(java.lang.String message)Constructs a new fatal handler exception with the specified detail message.FatalHandlerException(java.lang.String message, java.lang.Throwable cause)Constructs a new fatal handler exception with the specified detail message and cause.FatalHandlerException(java.lang.Throwable cause)Constructs a new fatal handler exception with the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause).
-
-
-
Constructor Detail
-
FatalHandlerException
public FatalHandlerException()
Constructs a new fatal handler exception withnullas its detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).
-
FatalHandlerException
public FatalHandlerException(java.lang.String message)
Constructs a new fatal handler exception with the specified detail message. The cause is not initialized, and may subsequently be initialized by a call toThrowable.initCause(java.lang.Throwable).- Parameters:
message- the detail message. The detail message is saved for later retrieval by theThrowable.getMessage()method.
-
FatalHandlerException
public FatalHandlerException(java.lang.String message, java.lang.Throwable cause)Constructs a new fatal handler exception with the specified detail message and cause.Note that the detail message associated with
causeis not automatically incorporated in this runtime exception's detail message.- Parameters:
message- the detail message (which is saved for later retrieval by theThrowable.getMessage()method).cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.4
-
FatalHandlerException
public FatalHandlerException(java.lang.Throwable cause)
Constructs a new fatal handler exception with the specified cause and a detail message of(cause==null ? null : cause.toString())(which typically contains the class and detail message ofcause). This constructor is useful for runtime exceptions that are little more than wrappers for other throwables.- Parameters:
cause- the cause (which is saved for later retrieval by theThrowable.getCause()method). (Anullvalue is permitted, and indicates that the cause is nonexistent or unknown.)- Since:
- 1.4
-
-