/[classpath]/classpath/java/util/IllegalFormatWidthException.java
ViewVC logotype

Diff of /classpath/java/util/IllegalFormatWidthException.java

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

revision 1.1.2.1 by tromey, Wed Apr 20 20:20:31 2005 UTC revision 1.1.2.2 by tromey, Sun Aug 14 00:50:33 2005 UTC
# Line 41  package java.util; Line 41  package java.util;
41  /** @since 1.5 */  /** @since 1.5 */
42  public class IllegalFormatWidthException extends IllegalFormatException  public class IllegalFormatWidthException extends IllegalFormatException
43  {  {
44    private int width;    private static final long serialVersionUID = 16660902L;
45    
46    public IllegalFormatWidthException(int width)    // Note: name fixed by serialization.
47      private int w;
48    
49      public IllegalFormatWidthException(int w)
50    {    {
51      super();      super();
52      this.width = width;      this.w = w;
53    }    }
54    
55    public int getWidth()    public int getWidth()
56    {    {
57      return width;      return w;
58    }    }
59  }  }

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

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