audiojury.domain
Class TestEmptyException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--audiojury.domain.TestEmptyException
All Implemented Interfaces:
java.io.Serializable

public class TestEmptyException
extends java.lang.Exception

Thrown if the Test was unexpectedly empty. That is it was empty when it mustn't be for the requested operation to finish.

See Also:
Serialized Form

Constructor Summary
TestEmptyException()
          Creates a new instance of TestEmptyException without a detailed error message.
TestEmptyException(java.lang.String msg)
          Creates a new instance of TestEmptyException with the specified detailed error 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

TestEmptyException

public TestEmptyException()
Creates a new instance of TestEmptyException without a detailed error message.


TestEmptyException

public TestEmptyException(java.lang.String msg)
Creates a new instance of TestEmptyException with the specified detailed error message.

Parameters:
msg - String with the detailed error message.