1 19 package org.openide.filesystems; 20 21 22 29 public class FileStateInvalidException extends java.io.IOException { 30 31 static final long serialVersionUID = -4987532595879330362L; 32 33 34 private String fileSystemName; 35 36 38 public FileStateInvalidException() { 39 super(); 40 } 41 42 45 public FileStateInvalidException(String s) { 46 super(s); 47 } 48 49 53 FileStateInvalidException(String s, String fsName) { 54 super(s); 55 fileSystemName = fsName; 56 } 57 58 62 public String getFileSystemName() { 63 return fileSystemName; 64 } 65 } 66 | Popular Tags |