HTError.bytecode constructor
HTError.bytecode({})
Error: Unrecognizable bytecode.
Implementation
HTError.bytecode(
{String? extra,
String? correction,
String? filename,
int? line,
int? column,
int? offset,
int? length})
: this(ErrorCode.bytecode, ErrorType.runtimeError,
message: HTLocale.current.errorBytecode,
extra: extra,
correction: correction,
filename: filename,
line: line,
column: column,
offset: offset,
length: length);