/[classpath]/classpath/gnu/CORBA/Version.java
ViewVC logotype

Diff of /classpath/gnu/CORBA/Version.java

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

revision 1.4 by audriusa, Wed Sep 14 21:12:21 2005 UTC revision 1.5 by audriusa, Tue Oct 4 17:58:15 2005 UTC
# Line 123  public class Version Line 123  public class Version
123        }        }
124      catch (IOException ex)      catch (IOException ex)
125        {        {
126          throw new MARSHAL("IOException while reading message header");          MARSHAL m = new MARSHAL("IOException while reading message header");
127            m.initCause(ex);
128            m.minor = Minor.Header;
129            throw m;
130        }        }
131    }    }
132    
# Line 209  public class Version Line 212  public class Version
212        }        }
213      catch (IOException ex)      catch (IOException ex)
214        {        {
215          throw new MARSHAL("IOException while writing message header");          MARSHAL m = new MARSHAL("IOException while writing message header");
216            m.minor = Minor.Header;
217            m.initCause(ex);
218            throw m;
219        }        }
220    }    }
221    

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

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