Package-level declarations

Types

Link copied to clipboard
open class BinanceSDKException(val message: String, val cause: Throwable? = null) : Exception

Base exception class for all Binance SDK related exceptions. All specific exceptions in the SDK should extend this class to maintain a consistent exception hierarchy and error handling approach.

Link copied to clipboard

Exception thrown when attempting to use the Binance SDK before initialization. The SDK must be initialized with valid API credentials using BinanceSDK.setup before any operations can be performed.

Link copied to clipboard
Link copied to clipboard
class NetworkException(val message: String, val cause: Throwable?) : BinanceSDKException
Link copied to clipboard