org.xwiki.chart
Class ChartGeneratorException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.xwiki.chart.ChartGeneratorException
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
PlotGeneratorException

public class ChartGeneratorException
extends Exception

The class used to indicate exceptions specific to the Chart generator.

Since:
2.0M1
See Also:
Serialized Form

Constructor Summary
ChartGeneratorException(String message)
          Constructs a new exception with the specified message.
ChartGeneratorException(String message, Throwable throwable)
          Constructs a new exception with the specified message and cause.
ChartGeneratorException(Throwable throwable)
          Constructs a new exception with the specified 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
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

ChartGeneratorException

public ChartGeneratorException(String message)
Constructs a new exception with the specified message.

Parameters:
message - The explanation of the exception.

ChartGeneratorException

public ChartGeneratorException(Throwable throwable)
Constructs a new exception with the specified cause.

Parameters:
throwable - The underlying cause for this exception.

ChartGeneratorException

public ChartGeneratorException(String message,
                               Throwable throwable)
Constructs a new exception with the specified message and cause.

Parameters:
message - The explanation of the exception.
throwable - The underlying cause for this exception.