Pacchetto | org.osmf.events |
Classe | public class MediaError |
Ereditarietà | MediaError Error Object |
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Proprietà pubbliche
Proprietà | Definito da | ||
---|---|---|---|
constructor : Object
Un riferimento all'oggetto classe o alla funzione di costruzione per una determinata istanza di oggetto. | Object | ||
detail : String [sola lettura]
An optional string that contains supporting detail for the error. | MediaError | ||
errorID : int [sola lettura]
Contiene il numero di riferimento associato al messaggio di errore specifico. | Error | ||
message : String
Contiene il messaggio associato all'oggetto Error. | Error | ||
name : String
Contiene il nome dell'oggetto Error. | Error |
Metodi pubblici
Metodo | Definito da | ||
---|---|---|---|
Constructor. | MediaError | ||
Restituisce lo stack di chiamata per un errore al momento della costruzione dell’errore come stringa. | Error | ||
Indica se per un oggetto è definita una proprietà specifica. | Object | ||
Indica se un'istanza della classe Object si trova nella catena di prototipi dell'oggetto specificato come parametro. | Object | ||
Indica se la proprietà specificata esiste ed è enumerabile. | Object | ||
Imposta la disponibilità di una proprietà dinamica per le operazioni cicliche. | Object | ||
Restituisce la rappresentazione in formato stringa di questo oggetto, formattato in base alle convenzioni specifiche per le versioni localizzate. | Object | ||
[override]
Restituisce la stringa "Error" per impostazione predefinita oppure il valore contenuto nella proprietà Error.message, se definita. | Error | ||
Restituisce il valore di base dell'oggetto specificato. | Object |
Metodi protetti
Metodo | Definito da | ||
---|---|---|---|
Returns the message for the error with the specified ID. | MediaError |
Descrizione delle proprietà
detail | proprietà |
detail:String
[sola lettura] Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Implementazione
public function get detail():String
Descrizione della funzione di costruzione
MediaError | () | Funzione di costruzione |
public function MediaError(errorID:int, detail:String = null)
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | Flash Player 10, AIR 1.5 |
Constructor.
ParametrierrorID: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.
|
Descrizione dei metodi
getMessageForErrorID | () | metodo |
protected function getMessageForErrorID(errorID:int):String
Versione linguaggio: | ActionScript 3.0 |
Versione prodotto: | OSMF 1.0 |
Versioni runtime: | 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.
Parametri
errorID:int — The ID for the error.
|
String — The message for the error with the specified error ID.
|
Tue Jun 12 2018, 02:44 PM Z