-
public final class ErrorOptionsOptions for controlling how handled errors are reported.
-
-
Field Summary
Fields Modifier and Type Field Description private ErrorCaptureOptionscaptureprivate BooleanisFatal
-
Constructor Summary
Constructors Constructor Description ErrorOptions(ErrorCaptureOptions capture, Boolean isFatal)ErrorOptions(ErrorCaptureOptions capture)ErrorOptions()
-
Method Summary
Modifier and Type Method Description final ErrorCaptureOptionsgetCapture()Controls which data fields are captured during Event creation. final UnitsetCapture(ErrorCaptureOptions capture)Controls which data fields are captured during Event creation. final BooleangetIsFatal()Use with caution. final UnitsetIsFatal(Boolean isFatal)Use with caution. -
-
Constructor Detail
-
ErrorOptions
ErrorOptions(ErrorCaptureOptions capture, Boolean isFatal)
-
ErrorOptions
ErrorOptions(ErrorCaptureOptions capture)
-
ErrorOptions
ErrorOptions()
-
-
Method Detail
-
getCapture
final ErrorCaptureOptions getCapture()
Controls which data fields are captured during Event creation.
-
setCapture
final Unit setCapture(ErrorCaptureOptions capture)
Controls which data fields are captured during Event creation.
-
getIsFatal
final Boolean getIsFatal()
Use with caution. Marks the error as fatal / non-fatal. A fatal error is marked as
unhandled, and causes all automatic error reporting to be turned off (discarding all subsequent unhandled crashes).
-
setIsFatal
final Unit setIsFatal(Boolean isFatal)
Use with caution. Marks the error as fatal / non-fatal. A fatal error is marked as
unhandled, and causes all automatic error reporting to be turned off (discarding all subsequent unhandled crashes).
-
-
-
-