# Error handling The Wowza Flowplayer Android SDK provides a long list of callbacks for monitoring the player's state. Error callbacks are part of this list, but in many cases they may require special handling. There are errors that may not interrupt the content playback (eg. ad-related errors), but there are cases where the playback will be interrupted. In these cases, if you use the built-in controls, a meaningful message will be presented to the user together with a reload button. You can change these messages or provide translations to languages other than English by overriding the following string keys in your project's resources: ```xml Failed to play media. Failed to validate access token. Failed to load media. Failed to load built-in controls. Failed to load ad. An unknown error has occurred. ``` Finally, if the playback has been interrupted, you may want to reload the player without having to call `prepare()` again. This can be done by calling: ```js flowplayerView.reload() ```