public NewExceptionCutWizardPage() {
super(PAGE_NAME);
setTitle("Exception Cut Customization");
setDescription("Select an optional target exception that must match.");
fTargetExceptionDialogField = new StringButtonDialogField(new IStringButtonAdapter() {
public void changeControlPressed(DialogField field) {
IType type = chooseTargetException();
if (type != null) {
fTargetExceptionDialogField.setText(JavaModelUtil.getFullyQualifiedName(type));
}