Java Throwable to String formatExceptionForDisplay(Exception e)

Here you can find the source of formatExceptionForDisplay(Exception e)

Description

format Exception For Display

License

Open Source License

Declaration

public static String formatExceptionForDisplay(Exception e) 

Method Source Code

//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>-->";
    }
}

Related

  1. formatException(Throwable e)
  2. formatException(Throwable t)
  3. formatException(Throwable t)
  4. formatThrowableForHtml(Throwable t)
  5. formatThrown(final Throwable thrown)
  6. getDetails(Throwable t)
  7. getErrorInfo(Throwable error)