blob: 229ed0f9e4e344b61ccc8ebd3476d266594b2b52 [file] [log] [blame]
import com.opensymphony.xwork2.Action;
public class NPE implements Action {
public String execute() {
throw new NullPointerException("Oops!");
}
}