[]
Create a LicenseException with message.
public LicenseException(string message = null)
Public Sub New(Optional message As String = Nothing)
| Type | Name | Description |
|---|---|---|
| string | message | The message. |
Create a LicenseException with type information.
public LicenseException(Type type)
Public Sub New(type As Type)
| Type | Name | Description |
|---|---|---|
| Type | type | The type that failed licensing. |
Create a LicenseException with message and error code.
public LicenseException(string message, LicenseErrorCode errorCode)
Public Sub New(message As String, errorCode As LicenseErrorCode)
| Type | Name | Description |
|---|---|---|
| string | message | The error message. |
| LicenseErrorCode | errorCode | The license error code. |
Create a LicenseException with message, error code, and inner exception.
public LicenseException(string message, LicenseErrorCode errorCode, Exception innerException)
Public Sub New(message As String, errorCode As LicenseErrorCode, innerException As Exception)
| Type | Name | Description |
|---|---|---|
| string | message | The error message. |
| LicenseErrorCode | errorCode | The license error code. |
| Exception | innerException | The inner exception. |