org.kohsuke.jnt
Class ProcessingException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by 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

Constructor Summary
ProcessingException()
           
ProcessingException(String message)
           
ProcessingException(String message, Throwable cause)
           
ProcessingException(Throwable cause)
           
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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.