ClipActionNotAllowedException

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.ClipActionNotAllowedException
File last modified:Wednesday, 04 May 2011, 17:31:03
A RedBox exception.

Summary


Constructor

Constructor

ClipActionNotAllowedException

public function ClipActionNotAllowedException (
message:String)

Thrown when the current user is not allowed to perform an action on a clip.
This exception is raised when the user tries to delete an a/v clip or to update its properties not being its owner.
Parameters:
message:
the error message.
Example:
  • The following example shows how to handle the "ClipActionNotAllowedException" exception.
    try
    {
        avClipMan.deleteClip(clipId);
    }
    catch (err:ClipActionNotAllowedException)
    {
        trace (err.message);
    }