FileDocCategorySizeDatePackage
InvalidFrameIdentifierException.javaAPI DocJaudiotagger 2.0.42121Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

InvalidFrameIdentifierException

public class InvalidFrameIdentifierException extends InvalidFrameException
Thrown if a frame identifier isn't valid.
author
Eric Farng
version
$Revision: 520 $

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary