org.jaudiotagger.tag
Class TagNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jaudiotagger.tag.TagException
              extended by org.jaudiotagger.tag.TagNotFoundException
All Implemented Interfaces:
java.io.Serializable

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.

Version:
$Revision: 1.4 $
Author:
Eric Farng
See Also:
Serialized Form

Constructor Summary
TagNotFoundException()
          Creates a new TagNotFoundException datatype.
TagNotFoundException(java.lang.String msg)
          Creates a new TagNotFoundException datatype.
TagNotFoundException(java.lang.String msg, java.lang.Throwable ex)
          Creates a new TagNotFoundException datatype.
TagNotFoundException(java.lang.Throwable ex)
          Creates a new TagNotFoundException datatype.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TagNotFoundException

public TagNotFoundException()
Creates a new TagNotFoundException datatype.


TagNotFoundException

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

Parameters:
ex - the cause.

TagNotFoundException

public TagNotFoundException(java.lang.String msg)
Creates a new TagNotFoundException datatype.

Parameters:
msg - the detail message.

TagNotFoundException

public TagNotFoundException(java.lang.String msg,
                            java.lang.Throwable ex)
Creates a new TagNotFoundException datatype.

Parameters:
msg - the detail message.
ex - the cause.