1 18 package org.apache.activemq.transport; 19 20 import java.io.IOException ; 21 22 27 public class TransportDisposedIOException extends IOException { 28 29 private static final long serialVersionUID=-7107323414439622596L; 30 31 public TransportDisposedIOException() { 32 super(); 33 } 34 35 38 public TransportDisposedIOException(String message) { 39 super(message); 40 } 41 42 43 } 44 | Popular Tags |