com.aspose.slides
Class PptException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.aspose.slides.PptException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
PptEditException, PptImageException, PptReadException, PptWriteException

public class PptException
extends java.lang.Exception

This exception is the superclass of all other exceptions thrown in this package.

See Also:
Serialized Form

Constructor Summary
PptException()
          Creates a new PptException.
PptException(java.lang.String message)
          Creates a new PptException with a message string.
PptException(java.lang.String message, java.lang.Throwable cause)
          Creates a new PptException with a message string and a reason.
PptException(java.lang.Throwable cause)
          Creates a new PptException with a reason.
 
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

PptException

public PptException()
Creates a new PptException.


PptException

public PptException(java.lang.String message)
Creates a new PptException with a message string.

Parameters:
message - The message string.

PptException

public PptException(java.lang.String message,
                    java.lang.Throwable cause)
Creates a new PptException with a message string and a reason.

Parameters:
message - The message string.
cause - The reason, i.e. a throwable that indirectly caused this exception.

PptException

public PptException(java.lang.Throwable cause)
Creates a new PptException with a reason.

Parameters:
cause - The reason, i.e. a throwable that indirectly caused this exception.