Pakket | org.osmf.events |
Klasse | public class MetricError |
Overerving | MetricError Error Object |
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | Flash Player 10, AIR 1.5 |
A list of all possible framework-level errors can be found in the ABRErrorCodes class.
For custom errors, clients should subclass ABRError and override
getMessageForErrorID
to return messages for the custom
errors.
Openbare eigenschappen
Eigenschap | Gedefinieerd door | ||
---|---|---|---|
constructor : Object
Verwijzing naar het klasseobject of de constructorfunctie van een bepaalde objectinstantie. | Object | ||
detail : String [alleen-lezen]
An optional string that contains supporting detail for the error. | MetricError | ||
errorID : int [alleen-lezen]
Bevat het referentienummer dat aan het specifieke foutbericht is gekoppeld. | Error | ||
message : String
Bevat het bericht dat aan het object Error is gekoppeld. | Error | ||
name : String
Bevat de naam van het object Error. | Error |
Openbare methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
Constructor. | MetricError | ||
Retourneert de aanroepstack voor een fout op het moment van het bouwen van de fout als tekenreeks. | Error | ||
Geeft aan of voor een object een opgegeven eigenschap is gedefinieerd. | Object | ||
Geeft aan of een instantie van de klasse Object zich in de prototypeketen van het object bevindt dat als parameter is opgegeven. | Object | ||
Geeft aan of de opgegeven eigenschap bestaat en kan worden opgesomd. | Object | ||
Stelt de beschikbaarheid van een dynamische eigenschap voor lusbewerkingen in. | Object | ||
Geeft de tekenreeksweergave van dit object weer, geformatteerd volgens de locatiespecifieke conventies. | Object | ||
[overschrijven]
Retourneert standaard de tekenreeks "Error" of de waarde in de eigenschap Error.message, indien gedefinieerd. | Error | ||
Retourneert de primitieve waarde van het opgegeven object. | Object |
Beschermde methoden
Methode | Gedefinieerd door | ||
---|---|---|---|
Returns the message for the error with the specified ID. | MetricError |
Eigenschapdetails
detail | eigenschap |
detail:String
[alleen-lezen] Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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.
Implementatie
public function get detail():String
Constructordetails
MetricError | () | Constructor |
public function MetricError(errorID:int, detail:String = null)
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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 MetricErrorCodes .
| |
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.
|
Methodedetails
getMessageForErrorID | () | methode |
protected function getMessageForErrorID(errorID:int):String
Taalversie: | ActionScript 3.0 |
Productversie: | OSMF 2.0 |
Runtimeversies: | 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.
|
Wed Jun 13 2018, 11:42 AM Z