1 20 package org.apache.mina.common; 21 22 28 public class RuntimeIOException extends RuntimeException { 29 private static final long serialVersionUID = 9029092241311939548L; 30 31 public RuntimeIOException() { 32 super(); 33 } 34 35 public RuntimeIOException(String message) { 36 super(message); 37 } 38 39 public RuntimeIOException(String message, Throwable cause) { 40 super(message, cause); 41 } 42 43 public RuntimeIOException(Throwable cause) { 44 super(cause); 45 } 46 } 47 | Popular Tags |