FileDocCategorySizeDatePackage
EmptyFrameException.javaAPI DocJaudiotagger 2.0.41984Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

EmptyFrameException

public class EmptyFrameException extends InvalidFrameException
Thrown when find a Frame but it contains no data.
version
$Revision: 520 $

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary