/* * Sample.java * Created on Aug 26, 2004 * */ package com.bea.content.repo.internal; /** * * * @author jalpesh */ public class Sample { public Sample() { short s = getExpressionType(null); } public short getExpressionType(String expr) { if (expr == null) throw new RuntimeException("Hello"); return 1; } }