mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
adding warn messages
This commit is contained in:
parent
dbe3820290
commit
3fec4edf90
@ -105,8 +105,10 @@ public class TryIt {
|
|||||||
Process startShell = startShellProcessBuilder.start();
|
Process startShell = startShellProcessBuilder.start();
|
||||||
System.out.println("Connected to device shell");
|
System.out.println("Connected to device shell");
|
||||||
startShell.waitFor();
|
startShell.waitFor();
|
||||||
} catch (IOException | InterruptedException ignored) {
|
} catch (IOException e) {
|
||||||
// script can continue without this process
|
tryIt.handleException("Unable to start the shell", e);
|
||||||
|
} catch (InterruptedException ignored) {
|
||||||
|
//
|
||||||
}
|
}
|
||||||
System.out.println("\nGood Bye!");
|
System.out.println("\nGood Bye!");
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user