You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The first word in the error is in upper case and describes the error code. The remaining string is the error message itself. The ERR error code is the generic one. The error code is useful for clients to distinguish among different error conditions without having to do pattern matching in the error message, that may change.
and (for blob errors)
The general form is !<length>\r\n<bytes>\r\n. It is exactly like the String type. However like the Simple error type, the first uppercase word represents the error code.
So am I correct in assuming that the error code must
be upper-case only, or not contain anything other than A-Z0-9-_ or some other limited character set?
be at the start of the error string?
be separated from the rest of the error by a space ?
For the verbatim type, does the 3 character type marker have constraints? I assume it can't be <CR> or <LF>, but perhaps keeping it within the ASCII printable range?
The text was updated successfully, but these errors were encountered:
AngusP
changed the title
Blob Error Code question
Blob Error Code & Verbatim Type code question
Jul 4, 2019
The spec says (for simple errors)
and (for blob errors)
So am I correct in assuming that the error code must
A-Z0-9-_
or some other limited character set?For the verbatim type, does the 3 character type marker have constraints? I assume it can't be
<CR>
or<LF>
, but perhaps keeping it within the ASCII printable range?The text was updated successfully, but these errors were encountered: