samples/exceptions/src/org/apidesign/exceptions/trycatchredo/UserQuestionException.java
author Jaroslav Tulach <jtulach@netbeans.org>
Wed, 28 Jan 2009 08:06:41 +0100
changeset 307 52f941f090cd
child 309 1687adb2b7f0
permissions -rw-r--r--
Initial attempt to provide sample for trycatchredo
jtulach@307
     1
package org.apidesign.exceptions.trycatchredo;
jtulach@307
     2
jtulach@307
     3
import java.io.IOException;
jtulach@307
     4
import javax.swing.JComponent;
jtulach@307
     5
jtulach@307
     6
/**
jtulach@307
     7
 *
jtulach@307
     8
 * @author Jaroslav Tulach
jtulach@307
     9
 */
jtulach@307
    10
public abstract class UserQuestionException extends IOException {
jtulach@307
    11
    public abstract JComponent getQuestionPane();
jtulach@307
    12
    public abstract void confirm();
jtulach@307
    13
}