12 lines
319 B
Java
12 lines
319 B
Java
|
package eu.siacs.conversations.utils;
|
||
|
|
||
|
import android.content.Context;
|
||
|
|
||
|
public class ExceptionHelper {
|
||
|
public static void init(Context context) {
|
||
|
if(!(Thread.getDefaultUncaughtExceptionHandler() instanceof ExceptionHandler)) {
|
||
|
Thread.setDefaultUncaughtExceptionHandler(new ExceptionHandler(context));
|
||
|
}
|
||
|
}
|
||
|
}
|