EAF 7.4 Implementation

com.lutris.util
Class ExceptionUtils

java.lang.Object
  extended by com.lutris.util.ExceptionUtils

public class ExceptionUtils
extends java.lang.Object

A collection of static methods that deal with Exceptions.

Author:
Andy John
See Also:
java.lang.Exception;

Method Summary
static java.lang.String describeException(java.lang.Exception e)
          Returns a text description of the Exception.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

describeException

public static java.lang.String describeException(java.lang.Exception e)
Returns a text description of the Exception. This uses both the toString() method and the printStackTrace() method.

Parameters:
e - The Exception to return a description of.
Returns:
A full description of the Exception.

EAF 7.4 Implementation