org.jaudiotagger.tag
Class TagException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.jaudiotagger.tag.TagException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
FieldDataInvalidException, InvalidTagException, TagNotFoundException

public class TagException
extends java.lang.Exception

This is the exception that is always generated by any class in these packages.

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

Constructor Summary
TagException()
          Creates a new TagException datatype.
TagException(java.lang.String msg)
          Creates a new TagException datatype.
TagException(java.lang.String msg, java.lang.Throwable ex)
          Creates a new TagException datatype.
TagException(java.lang.Throwable ex)
          Creates a new TagException 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

TagException

public TagException()
Creates a new TagException datatype.


TagException

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

Parameters:
ex - the cause.

TagException

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

Parameters:
msg - the detail message.

TagException

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

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