org.tm4j.topicmap.index
Class DuplicateIndexNameException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byorg.tm4j.topicmap.index.DuplicateIndexNameException
All Implemented Interfaces:
java.io.Serializable

public class DuplicateIndexNameException
extends java.lang.Exception

Indicates that an attempt was made to put two Indexes with identical names in the context of one IndexManager.

Since:
0.7.0
Author:
Kal Ahmed
See Also:
Serialized Form

Constructor Summary
DuplicateIndexNameException()
          Creates a new duplicate index name exception without a detail message.
DuplicateIndexNameException(java.lang.String msg)
          Creates a new duplicate index name exception with the specified detail message.
 
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

DuplicateIndexNameException

public DuplicateIndexNameException()
Creates a new duplicate index name exception without a detail message.


DuplicateIndexNameException

public DuplicateIndexNameException(java.lang.String msg)
Creates a new duplicate index name exception with the specified detail message.

Parameters:
msg - The detail message to be associated with this exception.