Class InvalidDataException
Signals that input ZIP or related data is malformed or violates expected format constraints during processing.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Zip
Assembly: Telerik.Windows.Zip.dll
Syntax
public sealed class InvalidDataException : Exception, ISerializable, _Exception
Constructors
InvalidDataException()
Creates an InvalidDataException representing a generic invalid data condition.
Declaration
public InvalidDataException()
InvalidDataException(String)
Creates an InvalidDataException with a specific explanatory error message.
Declaration
public InvalidDataException(string message)
Parameters
|
System.String
message
The error message that explains the reason for the exception. |
InvalidDataException(String, Exception)
Creates an InvalidDataException with a message and inner exception providing causal context.
Declaration
public InvalidDataException(string message, Exception innerException)
Parameters
|
System.String
message
The error message that explains the reason for the exception. |
|
System.Exception
innerException
The exception that is the cause of the current exception. If the |