FileDocCategorySizeDatePackage
ReadOnlyFileException.javaAPI DocJaudiotagger 2.0.41715Wed Mar 30 16:11:46 BST 2011org.jaudiotagger.audio.exceptions

ReadOnlyFileException

public class ReadOnlyFileException extends Exception
This is the exception when try and access a read only file

Fields Summary
Constructors Summary
public ReadOnlyFileException()
Creates a new ReadOnlyException datatype.

    
public ReadOnlyFileException(Throwable ex)

        super(ex);
    
public ReadOnlyFileException(String msg)
Creates a new ReadOnlyException datatype.

param
msg the detail message.

        super(msg);
    
public ReadOnlyFileException(String msg, Throwable ex)

        super(msg, ex);
    
Methods Summary