1 16 17 package org.springframework.jms.support.converter; 18 19 import org.springframework.jms.JmsException; 20 21 29 public class MessageConversionException extends JmsException { 30 31 35 public MessageConversionException(String msg) { 36 super(msg); 37 } 38 39 44 public MessageConversionException(String msg, Throwable cause) { 45 super(msg, cause); 46 } 47 48 } 49 | Popular Tags |