Created

Embed URL

HTTPS clone URL

SSH clone URL

You can clone with HTTPS or SSH.

Download Gist
View gist:1286076
1 2 3 4 5 6 7 8
public void handleAuthorizationException(@Handles CaughtException<AuthorizationException> evt) {
String newTrace = new ExceptionStackOutput(evt.getException(), new StackFrameFilter() {
public StackFrameFilterResult process(StackFrame frame) {
return StackFrameFilterResult.TERMINATE;
}).printTrace();
messages.error("You do not have the necessary permissions to perform that operation", "");
evt.handled();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Something went wrong with that request. Please try again.