FileDocCategorySizeDatePackage
TagException.javaAPI DocJaudiotagger 2.0.41956Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

TagException

public class TagException extends Exception
This is the exception that is always generated by any class in these packages.
author
Eric Farng
version
$Revision: 520 $

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary