1 22 package org.jboss.mq; 23 24 31 public class DestinationFullException 32 extends SpyJMSException 33 { 34 36 37 private static final long serialVersionUID = -2818359593624770353L; 38 39 41 42 protected String text; 43 44 46 48 53 public DestinationFullException(final String msg) 54 { 55 super(msg); 56 this.text = msg; 57 } 58 59 61 66 public String getText() 67 { 68 return text; 69 } 70 71 73 75 77 } 79 | Popular Tags |