Here you can find the source of formatExceptionForDisplay(Exception e)
public static String formatExceptionForDisplay(Exception e)
//package com.java2s; /*//from w w w. jav a2 s.com * Copyright 2016 Sonic Foundry, Inc. Licensed under the Educational * Community License, Version 2.0 (the "License"); you may not use this file * except in compliance with the License. You may obtain a copy of the License at * * http://opensource.org/licenses/ECL-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ import java.io.StringWriter; import java.io.PrintWriter; public class Main { public static String formatExceptionForDisplay(Exception e) { StringWriter sw = new StringWriter(); e.printStackTrace(new PrintWriter(sw)); // LogServiceFactory.getInstance().getDefaultLog().logError("MediasiteBuildingBlockException: ", e); return "<span style=\"color: red;\">An error occurred while searching for Mediasite content. Please contact your Blackboard administrator for more information.</span><!--<pre>" + sw.toString() + "</pre>-->"; } }