FileDocCategorySizeDatePackage
InvalidTagException.javaAPI DocJaudiotagger 2.0.42378Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

InvalidTagException

public class InvalidTagException extends TagException
An InvalidTagException is thrown if a parse error occurs while a tag is being read from a file. This is different from a TagNotFoundException. Each tag (or MP3 Frame Header) has an ID string or some way saying that it simply exists. If this string is missing, TagNotFoundException is thrown. If the ID string exists, then any other error while reading throws an InvalidTagException.
version
$Revision: 520 $

Fields Summary
Constructors Summary
public InvalidTagException()
Creates a new InvalidTagException datatype.

    
public InvalidTagException(Throwable ex)
Creates a new InvalidTagException datatype.

param
ex the cause.

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

param
msg the detail message.

        super(msg);
    
public InvalidTagException(String msg, Throwable ex)
Creates a new InvalidTagException datatype.

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary