magick
Class MagickApiException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--magick.MagickException
                    |
                    +--magick.MagickApiException

public class MagickApiException
extends MagickException

Encapsulation of the ImageMagick ExceptionInfo structure as well as the exception that is thrown when an ImageMagick API failed.

Author:
Eric Yeo

Method Summary
 StringgetDescription()
          Get the description of the exception.
 StringgetReason()
           
 intgetSeverity()
           

Methods inherited from class java.lang.Throwable
getMessage, getLocalizedMessage, toString, printStackTrace, printStackTrace, printStackTrace, fillInStackTrace

Methods inherited from class java.lang.Object
getClass, hashCode, equals, notify, notifyAll, wait, wait, wait

Method Detail

getDescription

public String getDescription()
Get the description of the exception.
Returns: description of the exception.

getReason

public String getReason()

getSeverity

public int getSeverity()

Association Links

to Class java.lang.String

An reason for failure.

to Class java.lang.String

A description of the problem.

JMagick