FileDocCategorySizeDatePackage
InvalidDataTypeException.javaAPI DocJaudiotagger 2.0.41931Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

InvalidDataTypeException

public class InvalidDataTypeException extends InvalidTagException
Indicates there was a problem parsing this datatype due to a problem with the data such as the array being empty when trying to read from a file.
version
$Revision: 520 $

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary