} catch (CommandLineExecutionFailed e) {
assertNotNull(e.getCause());
assertTrue(e.getCause() instanceof NoSuchCommandException);
}
try {
shell.execute("wrapper");
fail("command should not exist");
} catch (CommandLineExecutionFailed e) {
assertNotNull(e.getCause());
assertTrue(e.getCause() instanceof NoSuchCommandException);
}