Pacote | com.adobe.gravity.utility.error |
Classe | public class AugmentedError |
Herança | AugmentedError Error Object |
Subclasses | AggregatingTokenError |
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
Propriedade | Definido por | ||
---|---|---|---|
causes : Array [somente leitura] An array of causes. | AugmentedError | ||
constructor : Object
Uma referência ao objeto de classe ou à função de construtor de uma determinada ocorrência de objeto. | Object | ||
errorID : int [somente leitura]
Contém o número de referência associado à mensagem de erro específica. | Error | ||
identifier : String [somente leitura] The error identifier. | AugmentedError | ||
message : String
Contém a mensagem associada ao objeto Error. | Error | ||
name : String
Contém o nome do objeto Error. | Error | ||
parameterNamespace : String [somente leitura] The parameter namespace. | AugmentedError | ||
parameters : Object [somente leitura] The error parameters. | AugmentedError |
Método | Definido por | ||
---|---|---|---|
AugmentedError(identifier:String = null, message:String = null, parameters:Object = null, parameterNamespace:String = null, cause:Object = null)
Constructor. | AugmentedError | ||
Retorna a pilha de chamada para um erro no momento da construção do erro como sequência de caracteres. | Error | ||
Indica se um objeto tem uma propriedade especificada definida. | Object | ||
Indica se uma ocorrência da classe Object está na cadeia de protótipos do objeto especificado como o parâmetro. | Object | ||
Indica se a propriedade especificada existe e é enumerável. | Object | ||
Define a disponibilidade de uma propriedade dinâmica para operações de repetição. | Object | ||
Retorna a representação da string deste objeto, formatado segundo as convenções específicas para a localidade. | Object | ||
[substituir]
Retorna a string "Erro" por padrão ou o valor contido na propriedade Error.message, se definida. | Error | ||
Retorna o valor primitivo do objeto especificado. | Object |
causes | propriedade |
causes:Array
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | 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.
Implementação
public function get causes():Array
identifier | propriedade |
identifier:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | 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.
Implementação
public function get identifier():String
parameterNamespace | propriedade |
parameterNamespace:String
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | AIR 1.1, Flash Player 9 |
The parameter namespace.
Implementação
public function get parameterNamespace():String
parameters | propriedade |
parameters:Object
[somente leitura] Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | 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.
Implementação
public function get parameters():Object
AugmentedError | () | Construtor |
public function AugmentedError(identifier:String = null, message:String = null, parameters:Object = null, parameterNamespace:String = null, cause:Object = null)
Versão da linguagem: | ActionScript 3.0 |
Versão de produto: | Adobe Digital Enterprise Platform Experience Services - Client Component Framework 10 |
Versões de runtime: | 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". Parâmetrosidentifier: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).
|
Elementos da API relacionados
Wed Jun 13 2018, 11:10 AM Z