Initializes a new instance of the ZipException class.

Namespace:  Rebex.IO.Compression
Assembly:  Rebex.Zip (in Rebex.Zip.dll)

Syntax

Visual Basic
Public Sub New ( _
	message As String, _
	inner As Exception, _
	problemType As ArchiveProblemType, _
	archiveItemPath As String, _
	externalItemPath As String _
)
C#
public ZipException(
	string message,
	Exception inner,
	ArchiveProblemType problemType,
	string archiveItemPath,
	string externalItemPath
)

Parameters

message
Type: System..::..String
The message that describes the error.
inner
Type: System..::..Exception
The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
problemType
Type: Rebex.IO.Compression..::..ArchiveProblemType
An enum value describes the error.
archiveItemPath
Type: System..::..String
Path of the archive item which caused the error.
externalItemPath
Type: System..::..String
Path of the external item (path outside the archive) which caused the problem.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also