FileDocCategorySizeDatePackage
TagNotFoundException.javaAPI DocJaudiotagger 2.0.42315Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

TagNotFoundException

public class TagNotFoundException extends TagException
Thrown if the tag o isn't found. This is different from the InvalidTagException. Each tag 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.
author
Eric Farng
version
$Revision: 520 $

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary