/* * Args.java * * Created on 8 de Julho de 2007, 18:24 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package webutil; /** * * @author Eduardo */ public class Args { /** Creates a new instance of Args */ public Args() { } public static void checkForContent(String aBody) { boolean valid = Util.textHasContent(aBody); if(!valid) throw new IllegalArgumentException(aBody); } }