public void executeCommand(@NotNull final MksVcs mksVcs, @NotNull List<VcsException> exceptions,
@NotNull VirtualFile[] affectedFiles) throws VcsException {
try {
final CmdRunner runner = MKSAPIHelper.getInstance().getSession().createCmdRunner();
Command command = new Command(Command.SI);
command.setCommandName("about");
command.addOption(new Option("gui"));
runner.execute(command);
} catch (APIException e) {
ArrayList<VcsException> errors = new ArrayList<VcsException>();
//noinspection ThrowableInstanceNeverThrown
errors.add(new VcsException(e));