1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
|
<table frame="all">
<title>Numeric status codes</title>
<tgroup cols="2">
<thead>
<row>
<entry>Range</entry>
<entry>Description</entry>
</row>
</thead>
<tbody>
<row>
<entry>0</entry>
<entry>success</entry>
</row>
<row>
<entry>1-9</entry>
<entry>reserved</entry>
</row>
<row>
<entry>10-19</entry>
<entry>invalid parameters</entry>
</row>
<row>
<entry>20-29</entry>
<entry>syntax errors</entry>
</row>
<row>
<entry>30-99</entry>
<entry>command-specific return codes</entry>
</row>
<row>
<entry>100-109</entry>
<entry>internal errors</entry>
</row>
<row>
<entry>110-255</entry>
<entry>reserved</entry>
</row>
</tbody>
</tgroup>
</table>
|