All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class rpi.goldsd.container.DuplicateElementException

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Exception
                   |
                   +----java.lang.RuntimeException
                           |
                           +----rpi.goldsd.container.DuplicateElementException

public class DuplicateElementException
extends RuntimeException
The DuplicateElementException class represents an exception that should be thrown when a method fails due to the occurrence of a duplicate element (typically brought on by a violation of a unique constraint).

Version:
1.0, 3/16/98
Author:
David Goldschmidt
See Also:
AssociativeContainer

Constructor Index

 o DuplicateElementException()
The default constructor simply calls the default constructor of the parent class RuntimeException.
 o DuplicateElementException(String)
This constructor calls the corresponding constructor of the parent class RuntimeException with the given String argument to be displayed.

Constructors

 o DuplicateElementException
 public DuplicateElementException()
The default constructor simply calls the default constructor of the parent class RuntimeException.

 o DuplicateElementException
 public DuplicateElementException(String s)
This constructor calls the corresponding constructor of the parent class RuntimeException with the given String argument to be displayed.

Parameters:
s - the String object to be displayed.

All Packages  Class Hierarchy  This Package  Previous  Next  Index