audiojury.domain
Class ProjectEmptyException

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

public class ProjectEmptyException
extends java.lang.Exception

Thrown if the Project 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
ProjectEmptyException()
          Creates a new instance of ProjectEmptyException without a detailed error message.
ProjectEmptyException(java.lang.String msg)
          Creates a new instance of ProjectEmptyException 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

ProjectEmptyException

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


ProjectEmptyException

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

Parameters:
msg - String with the detailed error message.