vooga.engine.resource.random
Class RandomizerException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by vooga.engine.resource.random.RandomizerException
All Implemented Interfaces:
java.io.Serializable

public class RandomizerException
extends java.lang.Exception

RandomizerException is thrown whenever Randomizer attempts to work with some kind of inconsistent parameters. This can arise when Randomizer is passed two differing Number types when attempting to specify a range or when the first parameter when specifying a range is larger than the second. Examples:

See Also:
Serialized Form

Constructor Summary
RandomizerException()
          Constructs a new GameClockException that includes the current stack trace.
RandomizerException(java.lang.String detailMessage)
          Constructs a new GameClockException with the current stack trace and the specified detail message.
 
Method Summary
 
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

RandomizerException

public RandomizerException()
Constructs a new GameClockException that includes the current stack trace.


RandomizerException

public RandomizerException(java.lang.String detailMessage)
Constructs a new GameClockException with the current stack trace and the specified detail message.

Parameters:
detailMessage - the detail message for this exception.