InvalidChatSessionIdException

Kind of class:public class
Package:com.smartfoxserver.v2.redbox.exceptions
Inherits from:Error
Author:The gotoAndPlay() Team
http://www.smartfoxserver.com
Classpath:com.smartfoxserver.v2.redbox.exceptions.InvalidChatSessionIdException
File last modified:Wednesday, 04 May 2011, 17:31:33
A RedBox exception.

Summary


Constructor

Constructor

InvalidChatSessionIdException

public function InvalidChatSessionIdException (
message:String)

Thrown when an invalid chat session id is passed to an AVChatManager method.
This exception is raised if the passed session id is unknown or if the chat session' status doesn't match the expected one.
Parameters:
message:
the error message.
Example:
  • The following example shows how to handle the "InvalidChatSessionIdException" exception.
    try
    {
        avChatMan.refuseChatRequest(wrongSessionId);
    }
    catch (err:InvalidChatSessionIdException)
    {
        trace (err.message);
    }