jbora
Class MessageTooBigException

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

public class MessageTooBigException
extends JBoraException

Thrown when a Message is too big.

Author:
Milan Prica
See Also:
Serialized Form

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

MessageTooBigException

public MessageTooBigException()
Creates a new exception.


MessageTooBigException

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

Parameters:
message - Exception message

MessageTooBigException

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

Parameters:
cause - Exception cause

MessageTooBigException

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

Parameters:
message - Exception message
cause - Exception cause