MockError

sealed class MockError : RuntimeException

Base error class.

Author

Matthias Geisler

Parameters

message

the given error message.

Types

MissingCall
Link copied to clipboard
common
class MissingCall(message: String) : MockError
Indicates that a Proxy was not called.
MissingStub
Link copied to clipboard
common
class MissingStub(message: String) : MockError
Indicates that a Proxy is missing a defined behaviour.

Properties

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

Inheritors

MockError
Link copied to clipboard
MockError
Link copied to clipboard