audiojury.domain
Class NoProjectFoundException

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

public class NoProjectFoundException
extends java.lang.Exception

Thrown if a requested Project does not exist.

See Also:
Serialized Form

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

NoProjectFoundException

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


NoProjectFoundException

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

Parameters:
msg - String with the detailed error message.