Package | org.osmf.events |
Class | public class MediaError |
Inheritance | MediaError Error Object |
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
A list of all possible framework-level errors can be found in the MediaErrorCodes class.
For custom errors, clients should subclass MediaError and override
getMessageForErrorID
to return messages for the custom
errors.
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
detail : String [read-only]
An optional string that contains supporting detail for the error. | MediaError | ||
errorID : int [read-only]
Contains the reference number associated with the specific error message. | Error | ||
message : String
Contains the message associated with the Error object. | Error | ||
name : String
Contains the name of the Error object. | Error | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object |
Method | Defined By | ||
---|---|---|---|
Constructor. | MediaError | ||
Returns the call stack for an error as a string at the time of the error's construction (for the debugger version
of Flash Player and the AIR Debug Launcher (ADL) only; returns null if not using the debugger version
of Flash Player or the ADL. | Error | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
[override]
Returns the string "Error" by default or the value contained in the Error.message property,
if defined. | Error | ||
Returns the primitive value of the specified object. | Object |
Method | Defined By | ||
---|---|---|---|
Returns the message for the error with the specified ID. | MediaError |
detail | property |
detail:String
[read-only] Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
An optional string that contains supporting detail for the error. Typically this string is simply the error detail provided by a Flash Player API.
Implementation
public function get detail():String
MediaError | () | Constructor |
public function MediaError(errorID:int, detail:String = null)
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Constructor.
ParameterserrorID:int — The ID for the error. Used to look up a corresponding
message. Error IDs 0-999 are reserved for use by the framework,
and are defined in MediaErrorCodes .
| |
detail:String (default = null ) — An optional string that contains supporting detail
for the error. Typically this string is simply the error detail
provided by a Flash Player API.
|
getMessageForErrorID | () | method |
protected function getMessageForErrorID(errorID:int):String
Language Version: | ActionScript 3.0 |
Product Version: | OSMF 1.0 |
Runtime Versions: | Flash Player 10, AIR 1.5 |
Returns the message for the error with the specified ID. If the error ID is unknown, returns the empty string.
Subclasses should override to provide messages for their
custom errors, as this method returns the value that is exposed in
the message
property.
Parameters
errorID:int — The ID for the error.
|
String — The message for the error with the specified error ID.
|
Mon Nov 28 2011, 06:48 AM -08:00