< prev index next >

src/java.base/share/classes/java/nio/file/ReadOnlyFileSystemException.java

Print this page




  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.nio.file;
  27 
  28 /**
  29  * Unchecked exception thrown when an attempt is made to update an object
  30  * associated with a {@link FileSystem#isReadOnly() read-only} {@code FileSystem}.
  31  *
  32  * @since 1.7
  33  */
  34 
  35 public class ReadOnlyFileSystemException
  36     extends UnsupportedOperationException
  37 {

  38     static final long serialVersionUID = -6822409595617487197L;
  39 
  40     /**
  41      * Constructs an instance of this class.
  42      */
  43     public ReadOnlyFileSystemException() {
  44     }
  45 }


  18  * 2 along with this work; if not, write to the Free Software Foundation,
  19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20  *
  21  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22  * or visit www.oracle.com if you need additional information or have any
  23  * questions.
  24  */
  25 
  26 package java.nio.file;
  27 
  28 /**
  29  * Unchecked exception thrown when an attempt is made to update an object
  30  * associated with a {@link FileSystem#isReadOnly() read-only} {@code FileSystem}.
  31  *
  32  * @since 1.7
  33  */
  34 
  35 public class ReadOnlyFileSystemException
  36     extends UnsupportedOperationException
  37 {
  38     @java.io.Serial
  39     static final long serialVersionUID = -6822409595617487197L;
  40 
  41     /**
  42      * Constructs an instance of this class.
  43      */
  44     public ReadOnlyFileSystemException() {
  45     }
  46 }
< prev index next >