Package | com.adobe.gravity.utility.error |
Classe | public class AugmentedError |
Héritage | AugmentedError Error Object |
Sous-classes | AggregatingTokenError |
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Propriété | Défini par | ||
---|---|---|---|
causes : Array [lecture seule] An array of causes. | AugmentedError | ||
constructor : Object
Référence à l’objet de classe ou à la fonction constructeur d’une occurrence donnée d’un objet. | Object | ||
errorID : int [lecture seule]
Contient le numéro de référence associé au message d’erreur spécifique. | Error | ||
identifier : String [lecture seule] The error identifier. | AugmentedError | ||
message : String
Contient le message associé à l’objet Error. | Error | ||
name : String
Contient le nom de l’objet Error. | Error | ||
parameterNamespace : String [lecture seule] The parameter namespace. | AugmentedError | ||
parameters : Object [lecture seule] The error parameters. | AugmentedError |
Méthode | Défini par | ||
---|---|---|---|
AugmentedError(identifier:String = null, message:String = null, parameters:Object = null, parameterNamespace:String = null, cause:Object = null)
Constructor. | AugmentedError | ||
Renvoie la pile d’appel pour générer une erreur au moment de la construction de l’erreur en tant que chaîne. | Error | ||
Indique si la propriété spécifiée d’un objet est définie. | Object | ||
Indique si une occurrence de la classe Object figure dans la chaîne de prototype de l’objet spécifié en tant que paramètre. | Object | ||
Indique si la propriété spécifiée existe et est énumérable. | Object | ||
Définit la disponibilité d’une propriété dynamique pour les opérations en boucle. | Object | ||
Renvoie la représentation de chaîne de cet objet, formatée selon les paramètres régionaux en vigueur. | Object | ||
[override]
Renvoie la chaîne « Error » par défaut ou la valeur contenue dans la propriété Error.message, si elle est définie. | Error | ||
Renvoie la valeur primitive de l’objet spécifié. | Object |
causes | propriété |
causes:Array
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
An array of causes. Note that it is always a non-null Array, even if null or a non-Array object is passed into the constructor. Also note that while the contents of the Array will usually be Error objects, this is not enforced and so code that iterates through the causes should be prepared to deal with non-Error objects.
Implémentation
public function get causes():Array
identifier | propriété |
identifier:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
The error identifier. By default the name property will have the same value, although the name property can be set to a different value after construction.
Implémentation
public function get identifier():String
parameterNamespace | propriété |
parameterNamespace:String
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
The parameter namespace.
Implémentation
public function get parameterNamespace():String
parameters | propriété |
parameters:Object
[lecture seule] Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
The error parameters. Note that this object will never be null, even if null was passed into the constructor.
Implémentation
public function get parameters():Object
AugmentedError | () | Constructeur |
public function AugmentedError(identifier:String = null, message:String = null, parameters:Object = null, parameterNamespace:String = null, cause:Object = null)
Version du langage: | ActionScript 3.0 |
Version du produit: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versions du moteur d’exécution: | AIR 1.1, Flash Player 9 |
Constructor.
The message of the parent Error class is created by passing the message and parameters objects directly to the FormatMessage.formatString(...) call.
The parameterNamespace parameter can be used by aggregation systems (such as a logging framework) to distinguish parameters that have the same name but different semantics. For example, "taskId" might be a parameter for both a deferred execution mechanism and a To Do list subsystem. For an aggregation system to distinguish between the two, the deferred execution mechanism might be given a namespace of "edu.someuniversity.DeferredExecution" while the To Do list subsystem might have a namespace of "com.somecompany.subsystem.todo". Paramètresidentifier:String (default = null ) — The identifier for the error. The intention is that this identifier can be used to uniquely identify the error despite localization
or changes in message wording. The name property is also initialized to this value. Can be null,
in which case the name property will be initialized to "AugmentedError".
| |
message:String (default = null ) — The text of the message. This parameter will be passed to FormatMessage.formatString(...) with the specified parameters for parameter substitution.
| |
parameters:Object (default = null ) — An object with a property for each parameter that is to be substituted into the error message. May be null (which means
there are no parameters to be substituted).
| |
parameterNamespace:String (default = null ) — Similar to an XML namespace, prevents error parameters that have the same name but different semantics
from being confused. Generally code from a single team or company would have a single namespace. May be null (which should be considered the "global" namespace).
| |
cause:Object (default = null ) — The cause of this error. This is generally either a single Error object from a catch statement that is being wrapped into a higher-level
error, or an Array of Error objects from catch statements (in the case of an aggregate operation where multiple independent errors may occur, such as synchronization).
However, objects that are thrown are not necessarily Error objects, so the cause parameter may be something
other than an Error or an Array of Error objects. May be null. If it is an Array, the items will be copied so that changes to the original Array will
not affect this Error object (although changes to members of the Array may affect members of the causes Array).
|
Eléments de l’API associés
Tue Jun 12 2018, 09:30 AM Z