audiojury.domain
Class NotUniqueNameException

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

public class NotUniqueNameException
extends java.lang.Exception

Thrown if a suggested name is not unique within its context. The name can be a project name or a test name.

See Also:
Serialized Form

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

NotUniqueNameException

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


NotUniqueNameException

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

Parameters:
msg - String with the detailed error message.