gh-pages / com.nextfaze.devfun.error / SimpleError
SimpleError
data class SimpleError : ErrorDetails (source)
Convenience class that implements ErrorDetails and automatically time stamps it.
See Also
Constructors
| Name | Summary |
|---|---|
| <init> | SimpleError(t: Throwable, title: CharSequence, body: CharSequence, functionItem: FunctionItem? = null, time: Long = System.currentTimeMillis())Convenience class that implements ErrorDetails and automatically time stamps it. |
Properties
| Name | Summary |
|---|---|
| body | val body: CharSequenceSome details about why it occurred and/or resolution details, etc. |
| functionItem | 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 | val t: ThrowableThe exception that was thrown. |
| time | val time: LongWhen this error occurred in millis since epoch. |
| title | val title: CharSequenceA title for the dialog - the “kind” if you will. |