| java.lang.Object org.jdesktop.swingx.IncidentInfo
IncidentInfo | public class IncidentInfo (Code) | | |
IncidentInfo | public IncidentInfo(String header, String basicErrorMessage, String detailedErrorMesage, Throwable errorException)(Code) | | Main constructor that adds all the information to IncidentInfo
Parameters: header - Parameters: basicErrorMessage - Parameters: detailedErrorMesage - Parameters: errorException - |
getBasicErrorMessage | public String getBasicErrorMessage()(Code) | | Get the basic error description
basic error description |
getDetailedErrorMessage | public String getDetailedErrorMessage()(Code) | | Get the detailed error description
detailed description |
getErrorException | public Throwable getErrorException()(Code) | | Get an exception that contains some additional information about the
error if provided.
exception or null if no exception provided |
getHeader | public String getHeader()(Code) | | Get the current header string
header string |
setBasicErrorMessage | public void setBasicErrorMessage(String basicErrorMessage)(Code) | | Set the current basic error description
Parameters: basicErrorMessage - |
setDetailedErrorMessage | public void setDetailedErrorMessage(String detailedErrorMessage)(Code) | | Set the detailed description for this error
Parameters: detailedErrorMessage - |
setErrorException | public void setErrorException(Throwable errorException)(Code) | | Set the exception that may contain additional information about the
error.
Parameters: errorException - |
setHeader | public void setHeader(String header)(Code) | | Set the current header string
Parameters: header - |
|
|