au.com.prunge.jgenfile
Class ClosedIteratorException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.io.IOException
                    |
                    +--au.com.prunge.jgenfile.JGenFileException
                          |
                          +--au.com.prunge.jgenfile.ClosedIteratorException
All Implemented Interfaces:
Serializable

public class ClosedIteratorException
extends JGenFileException

An exception that occurs when the next element is queried in an iterator after the iterator has been closed.

Version:
1.0
Author:
Peter Runge
See Also:
Serialized Form

Constructor Summary
ClosedIteratorException()
          Constructs a ClosedIteratorException.
ClosedIteratorException(String s)
          Constructs a ClosedIteratorException with a 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

ClosedIteratorException

public ClosedIteratorException()
Constructs a ClosedIteratorException.


ClosedIteratorException

public ClosedIteratorException(String s)
Constructs a ClosedIteratorException with a detail message.

Parameters:
s - the detail message.