/******************************************************************************
    Sequence Index exception
----------------------------------------------------
Copyright (c) Gunnar Gotshalks. All Rights Reserved.

Permission to use, copy, modify, and distribute this software
and its documentation for NON-COMMERCIAL purposes and
without fee is hereby granted. 
*******************************************************************************/

package FlexOr.container;

/**
The exception is thrown whenever an attempt is made to access container 
elements by an out of range index (less than 0 or greater than or equal to 
size). 
*/

@SuppressWarnings("serial")
public class SequenceIndexException extends IndexOutOfBoundsException {

/** Exception without a message. */

  public SequenceIndexException() { super(); }

/** Exception with a message. */

  public SequenceIndexException(final String s) { super(s); }

}