/[classpath]/classpath/gnu/CORBA/GIOP/MessageHeader.java
ViewVC logotype

Diff of /classpath/gnu/CORBA/GIOP/MessageHeader.java

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

revision 1.3 by audriusa, Tue May 31 20:27:14 2005 UTC revision 1.4 by audriusa, Fri Jun 3 15:12:30 2005 UTC
# Line 294  public class MessageHeader Line 294  public class MessageHeader
294        }        }
295      catch (IOException ex)      catch (IOException ex)
296        {        {
297          throw new MARSHAL(ex.toString());          MARSHAL t = new MARSHAL();
298            t.initCause(ex);
299            throw t;
300        }        }
301    }    }
302    
# Line 340  public class MessageHeader Line 342  public class MessageHeader
342        }        }
343      catch (IOException ex)      catch (IOException ex)
344        {        {
345          throw new MARSHAL(ex.toString());          MARSHAL t = new MARSHAL();
346            t.initCause(ex);
347            throw t;
348        }        }
349    }    }
350  }  }

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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