1<?xml version="1.0" encoding="utf-8"?> 2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"[]> 3<html xml:lang="en-US" lang="en-US" xmlns="http://www.w3.org/1999/xhtml"> 4<head> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 6 <meta http-equiv="Content-Style-Type" content="text/css" /> 7 <link rel="stylesheet" href="../../../css/page.css" type="text/css" /> 8<title>File System: List of Descriptions</title> 9</head> 10<body> 11<h1>File System: List of Descriptions</h1> 12<h2>Table of Contents</h2> 13 <ul> 14<li><a href="#Summary">Overview</a></li> 15 <ul> 16<li><a href="#Summary_DescriptionList">List of Descriptions</a></li> 17 </ul> 18<li><a href="#History">Revision History</a></li> 19 </ul> 20<a name="Summary"><h2>Overview</h2></a> 21 <div class="section"> 22Debugging can sometimes be difficult when using a non-Try type API function with a ROM archive because, for example, if an error occurs, the display will forcibly change to an error display screen and you won't be able to see what was being displayed. This page gives useful information for dealing with this situation.<br /><br /> The following is an example of results that may be displayed on the error display screen.<br /> 23<pre> 24RSL : 0xC8804464 25 Level : -7 26 Summary: 4 27 Module : 17 28 Desc : 100 29</pre> 30Module=17: Indicates that there has been a file system error. Desc: This value is used to determine which error occurred.<BR>From the list, we know that the above error is <CODE>nn::fs::ResultNotFound</CODE>. 31<a name="Summary_DescriptionList"><h3>List of Descriptions</h3></a> 32 <div class="section"> 33File system errors are handled by taking multiple results together. (Reference: <a href="aboutErrorHandling.html#Summary_Result">Handling Results</a>)<br /> The value of Desc therefore has a range of meanings even if the error is of the same type.<br /> <br /> 34 <table> 35 <thead> 36<th>Desc</th><th><CODE>Result</CODE></th><th>Supplementary Information</th> 37 </thead> 38 <tr> 39 <th>100-179</th><td><ref def="nn::fs::ResultNotFound" /></td><td></td> 40 </tr> 41 <tr> 42<td>(130-179)</td><td><ref def="nn::fs::ResultMediaNotFound" /></td><td>Errors associated with <CODE>nn::fs::ResultNotFound</CODE>.</td> 43 </tr> 44 <tr> 45 <th>180-199</th><td><ref def="nn::fs::ResultAlreadyExists" /></td><td></td> 46 </tr> 47 <tr> 48 <th>200-219</th><td><ref def="nn::fs::ResultNotEnoughSpace" /></td><td></td> 49 </tr> 50 <tr> 51 <th>220-229</th><td><ref def="nn::fs::ResultArchiveInvalidated" /></td><td></td> 52 </tr> 53 <tr> 54 <th>230-339</th><td><ref def="nn::fs::ResultOperationDenied" /></td><td></td> 55 </tr> 56 <tr> 57<td>(260-279)</td><td><ref def="nn::fs::ResultWriteProtected" /></td><td>Errors associated with <CODE>nn::fs::OperationDenied</CODE>.</td> 58 </tr> 59 <tr> 60<td>(280-339)</td><td><ref def="nn::fs::ResultMediaAccessError" /></td><td>Errors associated with <CODE>nn::fs::OperationDenied</CODE>.</td> 61 </tr> 62 <tr> 63 <th>340-359</th><td><ref def="nn::fs::ResultNotFormatted" /></td><td></td> 64 </tr> 65 <tr> 66 <th>360-389</th><td><ref def="nn::fs::ResultBadFormat" /></td><td></td> 67 </tr> 68 <tr> 69 <th>390-399</th><td><ref def="nn::fs::ResultVerificationFailed" /></td><td></td> 70 </tr> 71 <tr> 72 <th>600-629</th><td><ref def="nn::fs::ResultOutOfResource" /></td><td></td> 73 </tr> 74 <tr> 75 <th>630-659</th><td><ref def="nn::fs::ResultAccessDenied" /></td><td></td> 76 </tr> 77 <tr> 78 <th>700-729</th><td><ref def="nn::fs::ResultInvalidArgument" /></td><td></td> 79 </tr> 80 <tr> 81 <th>730-749</th><td><ref def="nn::fs::ResultNotInitialized" /></td><td></td> 82 </tr> 83 <tr> 84 <th>750-759</th><td><ref def="nn::fs::ResultAlreadyInitialized" /></td><td></td> 85 </tr> 86 <tr> 87 <th>760-779</th><td><ref def="nn::fs::ResultUnsupportedOperation" /></td><td></td> 88 </tr> 89 </table> 90 </div> 91 </div> 92<a name="History"><h2>Revision History</h2></a> 93 <div class="section"> 94 <dl class="history"> 95 <dt>2011/02/10</dt> 96<dd>Initial version.</dd> 97 </dl> 98 </div> 99<hr><p>CONFIDENTIAL</p></body> 100</html> 101