ZipException Constructor
Namespace: Rebex.IO.Compression
Assembly: Rebex.Zip.dll (version 7.0.9083)
ZipException()
Initializes a new instance of the ZipException class.
Declaration
public ZipException()
ZipException(String)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
ZipException(String, Exception)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, Exception inner)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
Exception | inner | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
ZipException(String, Exception, ArchiveProblemType)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, Exception inner, ArchiveProblemType problemType)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
Exception | inner | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
ArchiveProblemType | problemType | An enum value describes the error. |
ZipException(String, ZipException)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, ZipException inner)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
ZipException | inner | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
ZipException(String, ArchiveProblemType)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, ArchiveProblemType problemType)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
ArchiveProblemType | problemType | An enum value describes the error. |
ZipException(String, ArchiveProblemType, String, String)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, ArchiveProblemType problemType, string archiveItemPath, string externalItemPath)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
ArchiveProblemType | problemType | An enum value describes the error. |
String | archiveItemPath | Path of the archive item which caused the error. |
String | externalItemPath | Path of the external item (path outside the archive) which caused the problem. |
ZipException(String, Exception, ArchiveProblemType, String, String)
Initializes a new instance of the ZipException class.
Declaration
public ZipException(string message, Exception inner, ArchiveProblemType problemType, string archiveItemPath, string externalItemPath)
Parameters
Type | Name | Description |
---|---|---|
String | message | The message that describes the error. |
Exception | inner | The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. |
ArchiveProblemType | problemType | An enum value describes the error. |
String | archiveItemPath | Path of the archive item which caused the error. |
String | externalItemPath | Path of the external item (path outside the archive) which caused the problem. |