com.adobe.pdfservices.operation.internal.util.ObjectUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdfservices-sdk Show documentation
Show all versions of pdfservices-sdk Show documentation
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
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