interface ErrorJsInterface
| getError | Is called after the core received the SxEventType.ERROR event. abstract fun getError(): String | 
| onAdPluginInitializationFailed | Is called when the ad plugin initialization has failed. abstract fun onAdPluginInitializationFailed(error: String): Unit | 
| onAdTagLoadingFailed | Is called when the ad tag loading has failed. abstract fun onAdTagLoadingFailed(error: String): Unit | 
| ErrorManager | Responsible for collecting errors and forward them to the EventProvider. class ErrorManager : IKoinDi, ErrorJsInterface, ErrorReceiver, Releasable |