Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 601 Bytes

beagleexception.md

File metadata and controls

25 lines (20 loc) · 601 Bytes
title weight description
BeagleException
121
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)
Attributes Type Required Description
message String Exception message thrown.
cause Throwable Cause of the exception.