1 18 package org.apache.activemq.transport; 19 20 import java.io.IOException ; 21 22 28 public class InactivityIOException extends IOException { 29 30 33 private static final long serialVersionUID = 5816001466763503220L; 34 35 public InactivityIOException() { 36 super(); 37 } 38 39 42 public InactivityIOException(String message) { 43 super(message); 44 } 45 46 47 } 48 | Popular Tags |