com.aspose.metafiles
Class MetafilesException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.aspose.metafiles.MetafilesException
All Implemented Interfaces:
java.io.Serializable

public class MetafilesException
extends java.lang.Exception

This exception is thrown if any errors with metafiles are detected.

See Also:
Serialized Form

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

MetafilesException

public MetafilesException()
Creates a new MetafilesException.


MetafilesException

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

Parameters:
message - The message string.

MetafilesException

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

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

MetafilesException

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

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