FileDocCategorySizeDatePackage
NullBoxIdException.javaAPI DocJaudiotagger 2.0.4328Wed Mar 30 16:11:46 BST 2011org.jaudiotagger.audio.exceptions

NullBoxIdException.java

package org.jaudiotagger.audio.exceptions;

/**
 * Thrown if when trying to read box id just finds nulls
 * Normally an error, but if occurs at end of file we allow it
 */
public class NullBoxIdException extends RuntimeException
{
    public NullBoxIdException(String message)
    {
        super(message);
    }
}