checkReady method
Implementation
void checkReady(final bool expectNotClosed) {
if (!isReady()) {
throw Exception("ABSmartly Context is not yet ready");
} else if (expectNotClosed) {
checkNotClosed();
}
}
void checkReady(final bool expectNotClosed) {
if (!isReady()) {
throw Exception("ABSmartly Context is not yet ready");
} else if (expectNotClosed) {
checkNotClosed();
}
}