Package net.sf.regain.search.sharedlib.error

Source Code of net.sf.regain.search.sharedlib.error.StacktraceTag

/*
* regain - A file search engine providing plenty of formats
* Copyright (C) 2004  Til Schneider
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
*
* Contact: Til Schneider, info@murfman.de
*
* CVS information:
*  $RCSfile$
*   $Source$
*     $Date: 2006-01-19 22:03:53 +0100 (Do, 19 Jan 2006) $
*   $Author: til132 $
* $Revision: 191 $
*/
package net.sf.regain.search.sharedlib.error;

import java.io.IOException;
import java.io.PrintWriter;
import java.io.StringWriter;

import net.sf.regain.RegainException;
import net.sf.regain.util.sharedtag.PageRequest;
import net.sf.regain.util.sharedtag.PageResponse;

/**
* Generates the stacktrace of the error.
*
* @author Til Schneider, www.murfman.de
*/
public class StacktraceTag extends AbstractErrorTag {

  /**
   * Called when the parser reaches the end tag.
   * 
   * @param request The page request.
   * @param response The page response.
   * @param error The error of the request.
   * @throws RegainException If there was an exception.
   */
  protected void printEndTag(PageRequest request,
    PageResponse response, Throwable error)
    throws RegainException
  {
    if (error != null) {
      try {
        StringWriter strWriter = new StringWriter();
        PrintWriter writer = new PrintWriter(strWriter);
        error.printStackTrace(writer);
        writer.close();
        strWriter.close();
       
        response.printNoHtml(strWriter.toString());
      }
      catch (IOException exc) {
        throw new RegainException("Printing stacktrace failed", exc);
      }
    }
  }

}
TOP

Related Classes of net.sf.regain.search.sharedlib.error.StacktraceTag

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.