private void notNull()

in src/main/java/org/apache/nlpcraft/client/impl/NCClientImpl.java [408:411]


    private void notNull(String v, String name) throws IllegalArgumentException {
        if (v == null || v.trim().isEmpty())
            throw new IllegalArgumentException(String.format("Parameter cannot be null or empty: '%s'", name));
    }