code/src/main/java/DataProviderSMON.java [436:444]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        } catch (final AbapException e) {
            System.out.println(e.toString());
            //reportUptime(false);
            throw new RuntimeException("Connection lost: " + e.toString());
        }

        final long stopTime = System.currentTimeMillis();
        final long elapsedTime = stopTime - startTime;
        System.out.println("PING: " + elapsedTime + " ms");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



code/src/main/java/Utils.java [203:210]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            } catch (final AbapException e) {
                System.out.println(e.toString());
                throw new RuntimeException("Connection lost: " + e.toString());
            }

            final long stopTime = System.currentTimeMillis();
            final long elapsedTime = stopTime - startTime;
            System.out.println("PING: " + elapsedTime + " ms");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



