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

CannotReadException

public class CannotReadException extends Exception
This exception is thrown if an audio file cannot be read.
Causes may be invalid data or IO errors.
author
Raphaƫl Slinckx

Fields Summary
Constructors Summary
public CannotReadException()
Creates an instance.

        super();
    
public CannotReadException(Throwable ex)

        super(ex);
    
public CannotReadException(String message)
Creates an instance.

param
message The message.

        super(message);
    
public CannotReadException(String message, Throwable cause)
Creates an instance.

param
message The error message.
param
cause The throwable causing this exception.

        super(message, cause);
    
Methods Summary