WarningInfo

WarningInfo class

Warning info

class WarningInfo;

Properties

PropertyTypeDescription
typeExceptionTypeReadonly. Get warning type.
descriptionstringReadonly. Get description of warning info.
errorObjectObjectReadonly. The error object.
correctedObjectObjectGets and sets the corrected object.

Methods

MethodDescription
getType()@deprecated. Please use the ’type’ property instead. Get warning type.
getDescription()@deprecated. Please use the ‘description’ property instead. Get description of warning info.
getErrorObject()@deprecated. Please use the ’errorObject’ property instead. The error object.
getCorrectedObject()@deprecated. Please use the ‘correctedObject’ property instead. Gets and sets the corrected object.
setCorrectedObject(Object)@deprecated. Please use the ‘correctedObject’ property instead. Gets and sets the corrected object.
isNull()Checks whether the implementation object is null.

type

Readonly. Get warning type.

type : ExceptionType;

description

Readonly. Get description of warning info.

description : string;

errorObject

Readonly. The error object.

errorObject : Object;

correctedObject

Gets and sets the corrected object.

correctedObject : Object;

getType()

@deprecated. Please use the ’type’ property instead. Get warning type.

getType() : ExceptionType;

Returns

ExceptionType

getDescription()

@deprecated. Please use the ‘description’ property instead. Get description of warning info.

getDescription() : string;

getErrorObject()

@deprecated. Please use the ’errorObject’ property instead. The error object.

getErrorObject() : Object;

getCorrectedObject()

@deprecated. Please use the ‘correctedObject’ property instead. Gets and sets the corrected object.

getCorrectedObject() : Object;

setCorrectedObject(Object)

@deprecated. Please use the ‘correctedObject’ property instead. Gets and sets the corrected object.

setCorrectedObject(value: Object) : void;

Parameters:

ParameterTypeDescription
valueObjectThe value to set.

isNull()

Checks whether the implementation object is null.

isNull() : boolean;