1 16 package org.mortbay.http; 17 import java.io.IOException ; 18 19 20 21 26 public class EOFException extends IOException  27 { 28 private IOException _ex; 29 30 public IOException getTargetException() 31 { 32 return _ex; 33 } 34 35 36 public EOFException() 37 {} 38 39 public EOFException(IOException ex) 40 { 41 _ex=ex; 42 } 43 44 public String toString() 45 { 46 return "EOFException("+ 47 (_ex==null?"":(_ex.toString()))+ 48 ")"; 49 } 50 } 51 | Popular Tags |