audiojury.domain
Class NoTestFoundException

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

public class NoTestFoundException
extends java.lang.Exception

Thrown if a requested test is not found.

See Also:
Serialized Form

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

NoTestFoundException

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


NoTestFoundException

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

Parameters:
msg - String with the detailed error message.