262728293031323334
* @return */ public static String validAndTrim(String str, String errMsg) { String ret = null; if (str == null || (ret = str.trim()).equals("")) { throw new InputStringIsNotValidException(errMsg); } return ret; }