jbora
Class AlreadyJoinedException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjbora.JBoraException
              extended byjbora.AlreadyJoinedException
All Implemented Interfaces:
Serializable

public class AlreadyJoinedException
extends JBoraException

Thrown when a group member tries to rejoin the group.

Author:
Milan Prica
See Also:
Serialized Form

Constructor Summary
AlreadyJoinedException()
          Creates a new exception object.
AlreadyJoinedException(String message)
          Creates a new exception and initializes it with a message.
AlreadyJoinedException(String message, Throwable cause)
          Creates a new exception and initializes it with a cause and a message.
AlreadyJoinedException(Throwable cause)
          Creates a new exception and initializes it with a cause.
 
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

AlreadyJoinedException

public AlreadyJoinedException()
Creates a new exception object.


AlreadyJoinedException

public AlreadyJoinedException(String message)
Creates a new exception and initializes it with a message.

Parameters:
message - Exception message

AlreadyJoinedException

public AlreadyJoinedException(Throwable cause)
Creates a new exception and initializes it with a cause.

Parameters:
cause - Exception cause

AlreadyJoinedException

public AlreadyJoinedException(String message,
                              Throwable cause)
Creates a new exception and initializes it with a cause and a message.

Parameters:
message - Exception message
cause - Exception cause