1 16 17 package org.springframework.jms; 18 19 25 public class UncategorizedJmsException extends JmsException { 26 27 public UncategorizedJmsException(String msg) { 28 super(msg); 29 } 30 31 public UncategorizedJmsException(String msg, Throwable cause) { 32 super(msg, cause); 33 } 34 35 public UncategorizedJmsException(Throwable cause) { 36 super("Uncategorized exception occured during JMS processing", cause); 37 } 38 39 } 40 | Popular Tags |