* if optionType is not either YES_NO_OPTION, YES_NO_CANCEL_OPTION,OK_CANCEL_OPTION;
* if defaultOption does not lie within the array boundaries of options.
*/
public final void testConfirmationCallback_02() throws IllegalArgumentException{
try {
cc = new ConfirmationCallback(3, ot[1], dopt[1]);
fail("Message type should be either INFORMATION, WARNING or ERROR");
}catch (IllegalArgumentException e){}
try {
cc = new ConfirmationCallback(mt[1], 3, dopt[1]);
fail("Option type should be either YES_NO_OPTION, YES_NO_CANCEL_OPTION or OK_CANCEL_OPTION");
} catch (IllegalArgumentException e){}
try {
cc = new ConfirmationCallback(mt[1], ot[1], 4);
fail("Default option type should be either YES, NO, CANCEL or OK");
} catch (IllegalArgumentException e){}
}