Created
May 23, 2018 11:22
-
-
Save bdarfler/d3c8f0740315e8e2bd1fd08bf6618f92 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
package com.company; | |
import javax.jms.ExceptionListener; | |
import javax.jms.JMSException; | |
import org.springframework.stereotype.Component; | |
@Component | |
public class JmsExceptionListener implements ExceptionListener | |
{ | |
public void onException( final JMSException e ) | |
{ | |
e.printStackTrace(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment