BeagleException

This section shows details about the BeagleException class.

Introduction

The 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 February 11, 2021: create content (#298) (43225e15)