AuctionError

sealed class AuctionError : Exception(source)

Sealed class that represents various errors that can occur during auctions

Inheritors

Types

Link copied to clipboard
class DeserializationError(val error: Throwable, val data: ByteArray) : AuctionError

Error that occurs during deserialization of auction responses

Link copied to clipboard

Error that occurs when the auction response is empty

Link copied to clipboard
class HttpError(val error: Throwable) : AuctionError

Error that occurs when there's an HTTP-related issue

Link copied to clipboard

Error that occurs when the number of auctions is invalid

Link copied to clipboard

Error that occurs during serialization of auction requests

Properties

Link copied to clipboard
open val cause: Throwable?
Link copied to clipboard
open val message: String?