BeagleException

In this section, you will find information about the BeagleException class.

Introduction

Beagle exception is an exception class thrown when an error occurs in Beagle:

open class BeagleException
constructor(
    override val message: String,
    override val cause: Throwable? = null
) : Exception(message, cause)
AttributesTypeRequiredDescription
messageStringException message thrown.
causeThrowableCause of the exception.

Last modified September 17, 2021: Reviewed Android section (#773) (e4c75e98)