if (args.length == 2) {
try {
id = Integer.parseInt(args[1]);
log.trace("Successfully parsed: " + args[1]);
} catch (NumberFormatException nfe) {
throw new IncompatibleArgsException(
"The third argument was expected to be the (integer) instance id to shutdown");
}
}
}
}