audiojury.domain
Class TestOperationException

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

public class TestOperationException
extends java.lang.Exception

Thrown if an requested operation on a Test fails for some reason.

See Also:
Serialized Form

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

TestOperationException

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


TestOperationException

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

Parameters:
msg - String with the detailed error message.