<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://m204wiki.rocketsoftware.com/index.php?action=history&amp;feed=atom&amp;title=InvalidZipData_class</id>
	<title>InvalidZipData class - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://m204wiki.rocketsoftware.com/index.php?action=history&amp;feed=atom&amp;title=InvalidZipData_class"/>
	<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=InvalidZipData_class&amp;action=history"/>
	<updated>2026-06-03T14:06:35Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://m204wiki.rocketsoftware.com/index.php?title=InvalidZipData_class&amp;diff=83768&amp;oldid=prev</id>
		<title>JAL: Created page with &quot;__NOTOC__ An &lt;var&gt;InvalidZipData&lt;/var&gt; exception indicates that during an attempt to extract information from a string, that string was found to not contain the valid result o...&quot;</title>
		<link rel="alternate" type="text/html" href="https://m204wiki.rocketsoftware.com/index.php?title=InvalidZipData_class&amp;diff=83768&amp;oldid=prev"/>
		<updated>2016-04-15T16:29:58Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;__NOTOC__ An &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; exception indicates that during an attempt to extract information from a string, that string was found to not contain the valid result o...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;__NOTOC__&lt;br /&gt;
An &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; exception indicates that during an attempt to extract information from a string, that string was found to not contain the valid result of a ZIP operation.&lt;br /&gt;
 &lt;br /&gt;
To produce an &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; exception yourself, you typically use a &amp;lt;var class=&amp;quot;product&amp;quot;&amp;gt;SOUL&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[Exceptions#Using the Throw statement|Throw]]&amp;lt;/var&amp;gt; statement with an &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;[[New (InvalidZipData constructor)|New]]&amp;lt;/var&amp;gt; constructor.  This statement must be issued from within a method, and it can only be caught by the code that calls the method.  For example, the following statement throws an &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; exception:&lt;br /&gt;
&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;throw %(invalidZipData):new&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
Remember that you catch an exception with the &amp;lt;var&amp;gt;[[Exceptions#Try and Catch|Catch]]&amp;lt;/var&amp;gt; statement; if an exception condition occurs outside a&lt;br /&gt;
&amp;lt;var&amp;gt;Catch&amp;lt;/var&amp;gt; for it, the request is cancelled.&lt;br /&gt;
&lt;br /&gt;
For an example of how you might use an exception in your own code, see this [[InvalidValue class|InvalidValue exception example]].&lt;br /&gt;
 &lt;br /&gt;
==The InvalidZipData methods==&lt;br /&gt;
{{Template:List of InvalidZipData methods}}&lt;br /&gt;
 &lt;br /&gt;
The methods in the class are described in the subsections that follow. In addition:&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;[[Notation conventions for methods]] has information&lt;br /&gt;
about the conventions followed. &amp;lt;/li&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;li&amp;gt;[[InvalidZipData methods syntax]] is a single page that contains the syntax diagrams of all the methods in the class. &amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
==New constructor==&lt;br /&gt;
{{Template:InvalidZipData:New subtitle}}&lt;br /&gt;
 &lt;br /&gt;
This &amp;lt;var&amp;gt;Constructor&amp;lt;/var&amp;gt; generates an instance of an &amp;lt;var&amp;gt;[[InvalidZipData_class|InvalidZipData]]&amp;lt;/var&amp;gt; exception. The &amp;lt;var&amp;gt;New&amp;lt;/var&amp;gt; method format follows:&lt;br /&gt;
&lt;br /&gt;
===Syntax===&lt;br /&gt;
{{Template:InvalidZipData:New syntax}}&lt;br /&gt;
 &lt;br /&gt;
====Syntax terms====&lt;br /&gt;
&amp;lt;table&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;%invalidZipData&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;A reference to an instance of an &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; object. &amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&amp;lt;th&amp;gt;&amp;lt;var&amp;gt;[%(InvalidZipData):]&amp;lt;/var&amp;gt;&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;td&amp;gt;The class name in parentheses denotes a &amp;lt;var&amp;gt;[[Notation conventions for methods#Constructors|Constructor]]&amp;lt;/var&amp;gt;. See [[#Usage notes|Usage notes]], below, for more information about invoking an &amp;lt;var&amp;gt;InvalidZipData&amp;lt;/var&amp;gt; &amp;lt;var&amp;gt;Constructor&amp;lt;/var&amp;gt;.&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
===Usage notes===&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
&amp;lt;li&amp;gt;As described in [[Object variables#Using New or other Constructors|Using New or other Constructors]], &amp;lt;var&amp;gt;New&amp;lt;/var&amp;gt; can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is &amp;lt;var&amp;gt;Null&amp;lt;/var&amp;gt;:&amp;lt;p class=&amp;quot;code&amp;quot;&amp;gt;%invalid = new&lt;br /&gt;
 &lt;br /&gt;
%invalid = %(InvalidZipData):new&lt;br /&gt;
 &lt;br /&gt;
%invalid = %invalid:new&lt;br /&gt;
&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:System exception classes]]&lt;/div&gt;</summary>
		<author><name>JAL</name></author>
	</entry>
</feed>