HTError.abstracted constructor
HTError.abstracted({})
Error: Cannot create instance from abstract class.
Implementation
HTError.abstracted(
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.abstracted, ErrorType.compileTimeError,
message: HTLocale.current.errorAbstracted,
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);