Class ExceptionInfo
- java.lang.Object
-
- org.primefaces.application.exceptionhandler.ExceptionInfo
-
- All Implemented Interfaces:
Serializable
public class ExceptionInfo extends Object implements Serializable
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static String
ATTRIBUTE_NAME
-
Constructor Summary
Constructors Constructor Description ExceptionInfo()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Throwable
getException()
String
getFormattedStackTrace()
String
getFormattedTimestamp()
String
getMessage()
StackTraceElement[]
getStackTrace()
Date
getTimestamp()
String
getType()
void
setException(Throwable exception)
void
setFormattedStackTrace(String formattedStackTrace)
void
setFormattedTimestamp(String formattedTimestamp)
void
setMessage(String message)
void
setStackTrace(StackTraceElement[] stackTrace)
void
setTimestamp(Date timestamp)
void
setType(String type)
-
-
-
Field Detail
-
ATTRIBUTE_NAME
public static final String ATTRIBUTE_NAME
-
-
Method Detail
-
getException
public Throwable getException()
-
setException
public void setException(Throwable exception)
-
getType
public String getType()
-
setType
public void setType(String type)
-
getMessage
public String getMessage()
-
setMessage
public void setMessage(String message)
-
getStackTrace
public StackTraceElement[] getStackTrace()
-
setStackTrace
public void setStackTrace(StackTraceElement[] stackTrace)
-
getTimestamp
public Date getTimestamp()
-
setTimestamp
public void setTimestamp(Date timestamp)
-
getFormattedStackTrace
public String getFormattedStackTrace()
-
setFormattedStackTrace
public void setFormattedStackTrace(String formattedStackTrace)
-
getFormattedTimestamp
public String getFormattedTimestamp()
-
setFormattedTimestamp
public void setFormattedTimestamp(String formattedTimestamp)
-
-