/[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.1.2.3 by gnu_andrew, Tue Sep 20 18:46:22 2005 UTC revision 1.1.2.4 by gnu_andrew, Wed Nov 2 00:43:23 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.1.2.3  
changed lines
  Added in v.1.1.2.4

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