Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
UI thread checking (#12000)
Browse files Browse the repository at this point in the history
* [android] - add UI thread checking
  • Loading branch information
tobrun committed May 25, 2018
1 parent 7710934 commit 7aaf492
Show file tree
Hide file tree
Showing 29 changed files with 644 additions and 197 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package com.mapbox.mapboxsdk.exceptions;

public class CalledFromWorkerThreadException extends RuntimeException {

public CalledFromWorkerThreadException(String message) {
super(message);
}
}
Loading

0 comments on commit 7aaf492

Please sign in to comment.