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