DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22216>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=22216

bug in processMessage(), doesn't work for ERROR





------- Additional Comments From [EMAIL PROTECTED]  2003-08-08 08:41 -------
An idea to solve the problem: Put some additional actions into the contructors 
of class FopImageException, like this: 

public class FopImageException extends Exception {
    public FopImageException() {
        super();
//      JUN 2003-08-08 -- appended lines
        MessageHandler.error("No message text available." + this.getMessage());
//      JUN 2003-08-08 
    }

    public FopImageException(String message) {
        super(message);
//      JUN 2003-08-08 -- appended lines
        MessageHandler.error(message);
//      JUN 2003-08-08 
    }

}

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, email: [EMAIL PROTECTED]

Reply via email to