FileDocCategorySizeDatePackage
FieldDataInvalidException.javaAPI DocJaudiotagger 2.0.41105Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

FieldDataInvalidException

public class FieldDataInvalidException extends TagException
Thrown if the try and create a field with invalid data

For example if try and create an Mp4Field with type Byte using data that cannot be parsed as a number then this exception will be thrown

Fields Summary
Constructors Summary
public FieldDataInvalidException()
Creates a new KeyNotFoundException datatype.

    
public FieldDataInvalidException(Throwable ex)
Creates a new KeyNotFoundException datatype.

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary