12345678910111213141516171819202122232425262728 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- IBM Cognos Products: cclutils
- (C) Copyright IBM Corp. 2005, 2010
- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <stringTable xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../cclcore/prod/Resources/CCLMessageFile.xsd" usage="Message source for CCLMessageFramework">
- <component name="IBJ">
- <section name="ANY">
- <string name="NOT_IMPLEMENTED" errorCode="0000">This method is not present in the current implementation.</string>
- <string name="WRAPPED_STREAM_ERROR" errorCode="0001">The wrapped stream reported an error: '<param type="string" index="1"/>'</string>
- <string name="BAD_EOF" errorCode="0002">The input is unexpectedly short.</string>
- <string name="UNKNOWN" errorCode="0003">An unknown error occurred while reading the input stream.</string>
- <string name="OPEN_FAIL" errorCode="0004">The program could not open the input file '<param type="string" index="1"/>', reason: '<param type="string" index="2"/>'</string>
- <string name="READ_FAIL" errorCode="0005">A read operation failed for the input file '<param type="string" index="1"/>', reason: '<param type="string" index="2"/>'</string>
- </section>
- <section name="GZP">
- <string name="NOT_GZIP" errorCode="0100">The input is not in gzip format (bad magic number).</string>
- <string name="BAD_METHOD" errorCode="0101">The input uses an unsupported gzip compression method.</string>
- <string name="BAD_CRC" errorCode="0102">The gzip inflater encountered a CRC error.</string>
- <string name="BAD_ISIZE" errorCode="0103">The gzip inflater encountered an input size error.</string>
- </section>
- </component>
- </stringTable>
|