You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ad...@apache.org on 2002/10/27 09:13:34 UTC

cvs commit: jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs FileSystemException.java

adammurdoch    2002/10/27 01:13:34

  Modified:    vfs/src/java/org/apache/commons/vfs FileSystemException.java
  Log:
  FileSystemException now extends IOException, to work better with java.io.* and java.net.*
  
  Revision  Changes    Path
  1.8       +2 -1      jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/FileSystemException.java
  
  Index: FileSystemException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-commons-sandbox/vfs/src/java/org/apache/commons/vfs/FileSystemException.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- FileSystemException.java	23 Oct 2002 11:59:39 -0000	1.7
  +++ FileSystemException.java	27 Oct 2002 08:13:33 -0000	1.8
  @@ -56,6 +56,7 @@
   package org.apache.commons.vfs;
   
   import org.apache.commons.vfs.util.Messages;
  +import java.io.IOException;
   
   /**
    * Thrown for file system errors.
  @@ -64,7 +65,7 @@
    * @version $Revision$ $Date$
    */
   public final class FileSystemException
  -    extends Exception
  +    extends IOException
   {
       /**
        * The Throwable that caused this exception to be thrown.
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>