FileDocCategorySizeDatePackage
KeyNotFoundException.javaAPI DocJaudiotagger 2.0.4988Wed Mar 30 16:12:12 BST 2011org.jaudiotagger.tag

KeyNotFoundException.java

package org.jaudiotagger.tag;

/**
 * Thrown if the key cannot be found
 * <p/>
 * <p>Shoudl not happen with well written code, hence RuntimeException.
 */
public class KeyNotFoundException extends RuntimeException
{
    /**
     * Creates a new KeyNotFoundException datatype.
     */
    public KeyNotFoundException()
    {
    }

    /**
     * Creates a new KeyNotFoundException datatype.
     *
     * @param ex the cause.
     */
    public KeyNotFoundException(Throwable ex)
    {
        super(ex);
    }

    /**
     * Creates a new KeyNotFoundException datatype.
     *
     * @param msg the detail message.
     */
    public KeyNotFoundException(String msg)
    {
        super(msg);
    }

    /**
     * Creates a new KeyNotFoundException datatype.
     *
     * @param msg the detail message.
     * @param ex  the cause.
     */
    public KeyNotFoundException(String msg, Throwable ex)
    {
        super(msg, ex);
    }
}