package org.gcube.common.calls.jaxrs; public class Utils { static void notNull(String message,Object o) { if (o==null) throw new IllegalArgumentException(o+" cannot be null"); } }