org.kohsuke.jnt
Class ProcessingException
java.lang.Object
java.lang.Throwable
java.lang.Exception
org.kohsuke.jnt.ProcessingException
- All Implemented Interfaces:
- Serializable
public class ProcessingException
- extends Exception
Signals processing error.
This library heavily relies on HTML scraping, and because
java.net keeps changing HTML representation, there's a
non-ignorable risk that the scraping fails.
There's also other risks, such as the server disconnects the connection,
the server send malformed HTML, etc.
Many of the methods defined in this library throws this exception
when it has a problem parsing HTML.
- Author:
- Kohsuke Kawaguchi (kk@kohsuke.org)
- See Also:
- Serialized Form
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
ProcessingException
public ProcessingException()
ProcessingException
public ProcessingException(String message)
ProcessingException
public ProcessingException(String message,
Throwable cause)
ProcessingException
public ProcessingException(Throwable cause)
Copyright © 2003-2008 Kohsuke Kawaguchi. All Rights Reserved.