audiojury.domain
Class ResultOperationException

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

public class ResultOperationException
extends java.lang.Exception

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

See Also:
Serialized Form

Constructor Summary
ResultOperationException()
          Creates a new instance of ResultOperationException without a detailed error message.
ResultOperationException(java.lang.String msg)
          Creates a new instance of ResultOperationException with the specified detailed error message.
 
Method Summary
 java.lang.String getMessage()
          Retrives the message from the exception, if any.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, 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

ResultOperationException

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


ResultOperationException

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

Parameters:
msg - String with the detailed error message.
Method Detail

getMessage

public java.lang.String getMessage()
Retrives the message from the exception, if any.

Overrides:
getMessage in class java.lang.Throwable
Returns:
String with the message from the exception.