worked the kinks out of the conference reports
This commit is contained in:
@@ -21,10 +21,18 @@ import java.io.IOException;
|
||||
import javax.servlet.ServletException;
|
||||
import javax.servlet.jsp.*;
|
||||
import javax.servlet.jsp.tagext.*;
|
||||
import org.apache.log4j.*;
|
||||
import com.silverwrist.venice.ui.*;
|
||||
|
||||
public class FrameContentHereTag extends VeniceTagSupport
|
||||
{
|
||||
/*--------------------------------------------------------------------------------
|
||||
* Overrides from class TagSupport
|
||||
*--------------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
private static Category logger = Category.getInstance(FrameContentHereTag.class);
|
||||
|
||||
/*--------------------------------------------------------------------------------
|
||||
* Overrides from class TagSupport
|
||||
*--------------------------------------------------------------------------------
|
||||
@@ -41,11 +49,13 @@ public class FrameContentHereTag extends VeniceTagSupport
|
||||
} // end try
|
||||
catch (IOException e)
|
||||
{ // convert the I/O error into something the servlet engine can deal with
|
||||
logger.error("IOException writing frame content",e);
|
||||
throw new JspTagException("IO error writing frame content - " + e.getMessage());
|
||||
|
||||
} // end catch
|
||||
catch (ServletException se)
|
||||
{ // convert the servlet exception into something we can deal with, too
|
||||
logger.error("ServletException writing frame content",se);
|
||||
throw new JspException("Servlet error writing frame content - " + se.getMessage());
|
||||
|
||||
} // end catch
|
||||
|
||||
Reference in New Issue
Block a user