InvalidTagExceptionpublic 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 . |
Constructors Summary |
---|
public InvalidTagException()Creates a new InvalidTagException datatype.
| public InvalidTagException(Throwable ex)Creates a new InvalidTagException datatype.
super(ex);
| public InvalidTagException(String msg)Creates a new InvalidTagException datatype.
super(msg);
| public InvalidTagException(String msg, Throwable ex)Creates a new InvalidTagException datatype.
super(msg, ex);
|
|