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 42 43 44 45 46 47 48
|
<html>
<body>
<h2><a href="cvm.html">CVM</a></h2>
<h1>CVM Error Values</h1>
<p>The following errors are defined:</p>
<table border=1>
<tr> <th>#</th> <th>Name</th> <th>Description</th> </tr>
<tr> <td><tt>1</tt></td> <td><tt>CVME_GENERAL</tt></td>
<td>Unspecified error.</td> </tr>
<tr> <td><tt>2</tt></td> <td><tt>CVME_BAD_CLIDATA</tt></td>
<td>Invalid data from the client.</td> </tr>
<tr> <td><tt>3</tt></td> <td><tt>CVME_BAD_MODDATA</tt></td>
<td>Invalid data from the CVM.</td> </tr>
<tr> <td><tt>4</tt></td> <td><tt>CVME_IO</tt></td>
<td>Input or output error while communicating with the CVM.</td> </tr>
<tr> <td><tt>5</tt></td> <td><tt>CVME_NOFACT</tt></td>
<td>A requested fact was not present.</td> </tr>
<tr> <td><tt>6</tt></td> <td><tt>CVME_CONFIG</tt></td>
<td>The module has incomplete or non-functional configuration. This
typically means an environment variable is missing or has bad
contents.</td> </tr>
<tr> <td><tt>7</tt></td> <td><tt>CVME_NOCRED</tt></td>
<td>A credential that is required for successful validation by the
module was not present in the input to the module.</td> </tr>
<tr> <td><tt>100</tt></td> <td><tt>CVME_PERMFAIL</tt></td>
<td>The credentials were accepted by the module but are incorrect.</td>
</tr>
</table>
<p>Any non-zero value other than <tt>CVME_PERMFAIL</tt> (100) should be
considered a temporary error.</p>
</body>
</html>
|