/[classpath]/classpath/java/net/Socket.java
ViewVC logotype

Diff of /classpath/java/net/Socket.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.53 by mark, Sun Oct 9 22:05:47 2005 UTC revision 1.54 by mark, Wed Oct 19 15:54:29 2005 UTC
# Line 325  public class Socket Line 325  public class Socket
325        }        }
326      catch (IOException e)      catch (IOException e)
327        {        {
328          throw new SocketException(e.getMessage());          SocketException se = new SocketException(e.toString());
329            se.initCause(e);
330            throw se;
331        }        }
332    
333      return impl;      return impl;

Legend:
Removed from v.1.53  
changed lines
  Added in v.1.54

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26