Paket | org.osmf.events |
Sınıf | public class MetricError |
Miras Alma | MetricError Error Object |
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 2.0 |
Çalışma Zamanı Sürümleri: | 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.
Genel Özellikler
Özellik | Tanımlayan: | ||
---|---|---|---|
constructor : Object
Belirli bir nesne örneği için sınıf nesnesine veya yapıcı işlevine bir başvuru. | Object | ||
detail : String [salt okunur]
An optional string that contains supporting detail for the error. | MetricError | ||
errorID : int [salt okunur]
Belirli bir hata mesajı ile ilişkili başvuru numarasını içerir. | Error | ||
message : String
Error nesnesi ile ilişkili mesajı içerir. | Error | ||
name : String
Error nesnesinin adını içerir. | Error |
Genel Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
Constructor. | MetricError | ||
Hatanın oluştuğu zamanda, bir hata için dize şeklinde çağrı yığını döndürür. | Error | ||
Bir nesnenin belirli bir özelliğinin tanımlı olup olmadığını gösterir. | Object | ||
Object sınıfının bir örneğinin parametre olarak belirtilen nesnenin prototip zincirinde olup olmadığını gösterir. | Object | ||
Belirtilen özelliğin bulunup bulunmadığını ve numaralandırılabilir olup olmadığını gösterir. | Object | ||
Dinamik bir özelliğin döngü işlemlerinde kullanılabilirliğini ayarlar. | Object | ||
Bu nesnenin, yerel ayara özel kurallara göre biçimlendirilmiş dize temsilini döndürür. | Object | ||
[geçersiz kıl]
Varsayılan olarak "Error" dizesini veya tanımlıysa Error.message özelliğinde bulunan değeri döndürür. | Error | ||
Belirtilen nesnenin temel değerini döndürür. | Object |
Korunan Yöntemler
Yöntem | Tanımlayan: | ||
---|---|---|---|
Returns the message for the error with the specified ID. | MetricError |
Özellik Ayrıntısı
detail | özellik |
detail:String
[salt okunur] Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 2.0 |
Çalışma Zamanı Sürümleri: | 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.
Uygulama
public function get detail():String
Yapıcı Ayrıntı
MetricError | () | Yapıcı |
public function MetricError(errorID:int, detail:String = null)
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 2.0 |
Çalışma Zamanı Sürümleri: | Flash Player 10, AIR 1.5 |
Constructor.
ParametrelererrorID: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.
|
Yöntem Ayrıntısı
getMessageForErrorID | () | yöntem |
protected function getMessageForErrorID(errorID:int):String
Dil Sürümü: | ActionScript 3.0 |
Ürün Sürümü: | OSMF 2.0 |
Çalışma Zamanı Sürümleri: | 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.
Parametreler
errorID:int — The ID for the error.
|
String — The message for the error with the specified error ID.
|
Tue Jun 12 2018, 01:09 PM Z