Skip to content

Instantly share code, notes, and snippets.

@bdarfler
Created May 23, 2018 11:22
Show Gist options
  • Save bdarfler/d3c8f0740315e8e2bd1fd08bf6618f92 to your computer and use it in GitHub Desktop.
Save bdarfler/d3c8f0740315e8e2bd1fd08bf6618f92 to your computer and use it in GitHub Desktop.
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