Class InvalidLengthException
Signals that a barcode value exceeds the allowed length for the target symbology when parsing or validating document text.
Inheritance
Inherited Members
Namespace: DPL.Telerik.Barcode.Validation
Assembly: Telerik.Windows.Documents.Core.dll
Syntax
public class InvalidLengthException : ValidateException, _Exception, ISerializable
Constructors
InvalidLengthException()
Initializes a new InvalidLengthException used during barcode validation in document text.
Declaration
public InvalidLengthException()
InvalidLengthException(Int32)
Initializes a new InvalidLengthException with the exceeded maximum length.
Declaration
public InvalidLengthException(int length)
Parameters
|
System.Int32
length
The maximum length that was exceeded. |
InvalidLengthException(String)
Initializes a new InvalidLengthException with a custom message.
Declaration
public InvalidLengthException(string message)
Parameters
|
System.String
message
|
InvalidLengthException(String, Exception)
Initializes a new InvalidLengthException with a custom message and inner exception.
Declaration
public InvalidLengthException(string message, Exception innerException)
Parameters
|
System.String
message
|
|
System.Exception
innerException
|