Throw exception in CpmFormatDisk#createFile()

This commit is contained in:
John B. Matthews 2014-01-25 16:57:40 +00:00
parent 9c98158778
commit 29d5afc673
1 changed files with 1 additions and 1 deletions

View File

@ -407,7 +407,7 @@ public class CpmFormatDisk extends FormattedDisk {
* @see com.webcodepro.applecommander.storage.DirectoryEntry#createFile()
*/
public FileEntry createFile() throws DiskFullException {
return null;
throw new DiskFullException(textBundle.get("FileCreationNotSupported")); //$NON-NLS-1$
}
/**