org.jaudiotagger.tag
Class InvalidDataTypeException

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

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: 1.6 $
See Also:
Serialized Form

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

InvalidDataTypeException

public InvalidDataTypeException()
Creates a new InvalidDataTypeException datatype.


InvalidDataTypeException

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

Parameters:
ex - the cause.

InvalidDataTypeException

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

Parameters:
msg - the detail message.

InvalidDataTypeException

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

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