Building Parsers with Java

sjm.combinatorics
Class CombinatoricException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--sjm.combinatorics.CombinatoricException

public class CombinatoricException
extends java.lang.Exception

Signals that a requested combinatoric quantity or enumeration is undefined.

See Also:
Serialized Form

Constructor Summary
CombinatoricException()
          Constructs a CombinatoricException with no detail message.
CombinatoricException(java.lang.String s)
          Constructs a CombinatoricException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CombinatoricException

public CombinatoricException()
Constructs a CombinatoricException with no detail message.

CombinatoricException

public CombinatoricException(java.lang.String s)
Constructs a CombinatoricException with the specified detail message.
Parameters:
s - the detail message.

by Steve Metsker