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

CannotReadVideoException

public class CannotReadVideoException extends CannotReadException
This exception should be thrown idf it appears the file is a video file, jaudiotagger only supports audio files.

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

        super();
    
public CannotReadVideoException(Throwable ex)

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

param
message The message.

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

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

        super(message, cause);
    
Methods Summary