All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.adobe.pdfservices.operation.internal.util.ObjectUtil Maven / Gradle / Ivy

Go to download

Adobe PDF Services SDK allows you to access RESTful APIs to create, convert, and manipulate PDFs within your applications. Older versions can be found under groupId: com.adobe.documentservices, artifactId: pdftools-sdk

There is a newer version: 4.2.0
Show newest version
package com.adobe.pdfservices.operation.internal.util;

import java.util.Objects;

public class ObjectUtil {
    public static void requireNonNull(Object obj, String errMsg) {
        if (Objects.isNull(obj)) {
            throw new IllegalArgumentException(errMsg);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy