org.jaudiotagger.tag
Class FieldDataInvalidException

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

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

See Also:
Serialized Form

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

FieldDataInvalidException

public FieldDataInvalidException()
Creates a new KeyNotFoundException datatype.


FieldDataInvalidException

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

Parameters:
ex - the cause.

FieldDataInvalidException

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

Parameters:
msg - the detail message.

FieldDataInvalidException

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

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