org.jaudiotagger.tag
Class KeyNotFoundException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.jaudiotagger.tag.KeyNotFoundException
All Implemented Interfaces:
java.io.Serializable

public class KeyNotFoundException
extends java.lang.RuntimeException

Thrown if the key cannot be found

Shoudl not happen with well written code, hence RuntimeException.

See Also:
Serialized Form

Constructor Summary
KeyNotFoundException()
          Creates a new KeyNotFoundException datatype.
KeyNotFoundException(java.lang.String msg)
          Creates a new KeyNotFoundException datatype.
KeyNotFoundException(java.lang.String msg, java.lang.Throwable ex)
          Creates a new KeyNotFoundException datatype.
KeyNotFoundException(java.lang.Throwable ex)
          Creates a new KeyNotFoundException datatype.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

KeyNotFoundException

public KeyNotFoundException()
Creates a new KeyNotFoundException datatype.


KeyNotFoundException

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

Parameters:
ex - the cause.

KeyNotFoundException

public KeyNotFoundException(java.lang.String msg)
Creates a new KeyNotFoundException datatype.

Parameters:
msg - the detail message.

KeyNotFoundException

public KeyNotFoundException(java.lang.String msg,
                            java.lang.Throwable ex)
Creates a new KeyNotFoundException datatype.

Parameters:
msg - the detail message.
ex - the cause.