Created
August 22, 2018 16:49
-
-
Save dagansandler/a765b1f0e1c0826bd84f9383adc2c39d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import rp.com.google.common.base.Throwables; | |
StringBuilder throwable = new StringBuilder(); | |
if (null != event.getThrowableInformation() && null != event.getThrowableInformation().getThrowable()) { | |
throwable.append(Throwables.getStackTraceAsString(event.getThrowableInformation().getThrowable())); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment