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

KeyNotFoundException

public class KeyNotFoundException extends RuntimeException
Thrown if the key cannot be found

Shoudl not happen with well written code, hence RuntimeException.

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

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

param
ex the cause.

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

param
msg the detail message.

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

param
msg the detail message.
param
ex the cause.

        super(msg, ex);
    
Methods Summary