gh-pages / com.nextfaze.devfun.error / ErrorDetails
ErrorDetails
interface ErrorDetails (source)
Details/information of an error.
See Also
Properties
| Name | Summary |
|---|---|
| body | abstract val body: CharSequenceSome details about why it occurred and/or resolution details, etc. |
| functionItem | abstract val functionItem: FunctionItem?The function item to lead to this error (such as when attempting to invoke/prepare/whatever). Will be null for general errors. |
| t | abstract val t: ThrowableThe exception that was thrown. |
| time | abstract val time: LongWhen this error occurred in millis since epoch. |
| title | abstract val title: CharSequenceA title for the dialog - the “kind” if you will. |
Inheritors
| Name | Summary |
|---|---|
| SimpleError | data class SimpleError : ErrorDetailsConvenience class that implements ErrorDetails and automatically time stamps it. |